#include<bits/stdc++.h> using namespace std; const int A = 26; int n; string s[2]; int cnt[2][2][A]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; cin>>s[0]>>s[1]; for(int i=0; i<2; ++i) { for(int j=0; j<n; ++j) { cnt[i][j%2][(int)s[i][j]-'a']++; } } bool fail = 0; for(int i=0; i<A; ++i) { for(int j=0; j<2; ++j) { if(cnt[0][j][i] != cnt[1][j][i]) fail = 1; } } if(fail) cout<<"NIE\n"; else cout<<"TAK\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include<bits/stdc++.h> using namespace std; const int A = 26; int n; string s[2]; int cnt[2][2][A]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; cin>>s[0]>>s[1]; for(int i=0; i<2; ++i) { for(int j=0; j<n; ++j) { cnt[i][j%2][(int)s[i][j]-'a']++; } } bool fail = 0; for(int i=0; i<A; ++i) { for(int j=0; j<2; ++j) { if(cnt[0][j][i] != cnt[1][j][i]) fail = 1; } } if(fail) cout<<"NIE\n"; else cout<<"TAK\n"; } |