Luogu 1071 - 潛伏者 - [字符串]
阿新 • • 發佈:2019-03-15
color ac代碼 不同 題解 相等 兩個 註意 不同的 for
題目鏈接:https://www.luogu.org/problemnew/show/P1071
題解:
模擬就完事兒了。
註意failed的情況有:出現一個 $f[x]$ 對應多個值;存在兩個不同的 $x,y$ 的 $f[x]$ 和 $f[y]$ 相等;存在一個 $x$ 的 $f[x]$ 沒有確定的值。
AC代碼:
#include<bits/stdc++.h> using namespace std; int f[30],cnt[30]; string x,y,s; int main() { cin>>x>>y>>s;if(x.size()!=y.size()) { cout<<"Failed"<<endl; return 0; } memset(f,0,sizeof(f)); for(int i=0;i<x.size();i++) { if(!f[x[i]-‘A‘+1]) f[x[i]-‘A‘+1]=y[i]-‘A‘+1; else if(f[x[i]-‘A‘+1]!=y[i]-‘A‘+1) { cout<<"Failed"<<endl; return 0; } } for(int i=1;i<=26;i++) { if(!f[i]) { cout<<"Failed"<<endl; return 0; } else { cnt[f[i]]++; if(cnt[f[i]]>1) { cout<<"Failed"<<endl; return 0; } } } for(int i=0;i<s.size();i++) s[i]=‘A‘+f[s[i]-‘A‘+1]-1; cout<<s<<endl; }
Luogu 1071 - 潛伏者 - [字符串]