T1 enc
当有26个字母中有25个知道,则剩下的那个也知道。
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
char a[1100];
char b[1100];
char c[30];
char d[1100];
bool e[30];
char ans[1100];
int l1,l2,num,f;
int main()
{
freopen("enc.in","r",stdin);
freopen("enc.out","w",stdout);
cin>>a;
cin>>b;
l1=strlen(a);
for(int i=0;i<l1;i++)
{
int x=b[i]-'a'+1;
if(!c[x])
{
c[x]=a[i];num++;
int y=a[i]-'a'+1;
e[y]=1;
}
else
{
char y=c[x];
c[x]=a[i];
if(y!=c[x])
{
f=1;break;
}
}
}
if(num==25&&f!=1)
{
int x,y;
for(int i=1;i<=26;i++)
if(!c[i])
{
x=i;break;
}
for(int i=1;i<=26;i++)
if(!e[i])
{
y=i;break;
}
c[x]=y-1+'a';
}
cin>>d;
l2=strlen(d);
for(int i=0;i<l2;i++)
{
int x=d[i]-'a'+1;
if(!c[x])
{
f=1;break;
}
ans[i]=c[x];
}
if(f==1) printf("ERROR");
else for(int i=0;i<l2;i++)
{
cout<<ans[i];
}
fclose(stdin);
fclose(stdout);
return 0;
}
T2 sort
根据冒泡排序的性质将问题转化成求最长上升子序列。这种情况在清北5上也有出现。
#include<iostream>
#include<cstdio>
using namespace std;
const int maxn=100100;
inline int read()
{
int res=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9')
{
if(ch=='-') f=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9')
{
res=res*10+ch-'0';
ch=getchar();
}
return res*f;
}
int n,a[maxn];
int f[maxn],t;
int main()
{
freopen("sort.in","r",stdin);
freopen("sort.out","w",stdout);
n=read();
for(int i=1;i<=n;i++)
a[i]=read();
t++;f[t]=a[1];
for(int i=2;i<=n;i++)
{
if(a[i]>f[t])
{
t++;f[t]=a[i];
}
else
{
int l=1,r=t,ans=l;
while(l<=r)
{
int mid=(l+r)/2;
if(f[mid]>a[i])
{
ans=mid;r=mid-1;
}
else l=mid+1;
}
f[ans]=a[i];
}
}
cout<<t;
fclose(stdin);
fclose(stdout);
return 0;
}
T3 game
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
using namespace std;
const int maxn=6000;
int n;
int a[maxn][maxn];
int vis[maxn];
int huan,lxy[maxn];
int st[maxn],t;
int spos[maxn];
bool dfs(int x)
{
vis[x]=1;st[t++]=x;spos[x]=t-1;
for(int i=0;i<n;++i)
{
if(a[x][i])
{
if(vis[i]==1)
{
huan=t-spos[i];
memcpy(lxy,st+spos[i],sizeof(int)*huan);
return 1;
}
else
{
if(vis[i]==0)
{
bool v=dfs(i);
if(v)return 1;
}
}
}
}
--t,vis[x]=2;
return 0;
}
void deal()
{
int m=huan;
for(int i=1;i<m-1;++i)
{
if(a[lxy[i+1]][lxy[0]])
{
printf("%d %d %d\n",lxy[0]+1,lxy[i]+1,lxy[i+1]+1);
}
}
}
char map[maxn];
int main()
{
freopen("game.in","r",stdin);
freopen("game.out","w",stdout);
cin>>n;
for(register int i=0;i<n;++i)
{
scanf("\n%s",map);
for(register int j=0;j<n;j++)
{
a[i][j]=map[j]=='1';
}
}
for(register int i=0;i<n;++i)
{
if(!vis[i])
{
bool found=dfs(i);
if(found)
{
deal();
return 0;
}
}
}
printf("-1");
fclose(stdin);
fclose(stdout);
return 0;
}