#include <iostream> #include <vector> #include <algorithm> using namespace std; int bn[28],cn[28],bp[28],cp[28]; string b,c; int a; int main() { std::ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); cin>>a; cin>>b; cin>>c; for(int i=0; i<a; i++) { if(i%2==0) { bp[b[i]%97]++; cp[c[i]%97]++; } else { bn[b[i]%97]++; cn[c[i]%97]++; } } for(int i=0; i<=26; i++) { if((bn[i]!=cn[i]) || (bp[i]!=cp[i])) {cout<<"NIE"; return 0;} } cout<<"TAK"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <iostream> #include <vector> #include <algorithm> using namespace std; int bn[28],cn[28],bp[28],cp[28]; string b,c; int a; int main() { std::ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); cin>>a; cin>>b; cin>>c; for(int i=0; i<a; i++) { if(i%2==0) { bp[b[i]%97]++; cp[c[i]%97]++; } else { bn[b[i]%97]++; cn[c[i]%97]++; } } for(int i=0; i<=26; i++) { if((bn[i]!=cn[i]) || (bp[i]!=cp[i])) {cout<<"NIE"; return 0;} } cout<<"TAK"; return 0; } |