#include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); int n; cin >>n; string t[2]; vector<int> vec[2][26]; vector<int> tab[2]; for(int k=0;k<2;k++) { cin >> t[k]; tab[k].resize(26,0); for(int i = 0;i<n;i++) { vec[k][t[k][i]-'a'].push_back(i); if(i%2==0) tab[k][t[k][i]-'a']++; } } bool able = true; for(int k=0;k<26;k++) { if(vec[0][k].size() != vec[1][k].size() || tab[0][k]!=tab[1][k]) able = false; } if(able) cout << "TAK"<<endl; else cout <<"NIE"<<endl; }
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 | #include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); int n; cin >>n; string t[2]; vector<int> vec[2][26]; vector<int> tab[2]; for(int k=0;k<2;k++) { cin >> t[k]; tab[k].resize(26,0); for(int i = 0;i<n;i++) { vec[k][t[k][i]-'a'].push_back(i); if(i%2==0) tab[k][t[k][i]-'a']++; } } bool able = true; for(int k=0;k<26;k++) { if(vec[0][k].size() != vec[1][k].size() || tab[0][k]!=tab[1][k]) able = false; } if(able) cout << "TAK"<<endl; else cout <<"NIE"<<endl; } |