#include <iostream> using namespace std; int tab[26]; int tab1[26]; int main() { string slowo, slowo1; int n; cin>>n; cin>>slowo; for(int i=0;i<n;i++) { if(i%2==0) tab[slowo[i]-'a']++; if(i%2==1) tab1[slowo[i]-'a']++; } cin>>slowo; for(int i=0;i<n;i++) { if(i%2==0) tab[slowo[i]-'a']--; if(i%2==1) tab1[slowo[i]-'a']--; } for(int i=0;i<26;i++) { if(tab[i]!=0) { cout<<"NIE"; return 0; } if(tab1[i]!=0) { 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 36 37 38 39 40 41 42 43 44 | #include <iostream> using namespace std; int tab[26]; int tab1[26]; int main() { string slowo, slowo1; int n; cin>>n; cin>>slowo; for(int i=0;i<n;i++) { if(i%2==0) tab[slowo[i]-'a']++; if(i%2==1) tab1[slowo[i]-'a']++; } cin>>slowo; for(int i=0;i<n;i++) { if(i%2==0) tab[slowo[i]-'a']--; if(i%2==1) tab1[slowo[i]-'a']--; } for(int i=0;i<26;i++) { if(tab[i]!=0) { cout<<"NIE"; return 0; } if(tab1[i]!=0) { cout<<"NIE"; return 0; } } cout<<"TAK"; return 0; } |