#include<iostream> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) int counts[2][30]; int n; int main() { ios_base::sync_with_stdio(0); cin >> n; int sum = 0; string s; cin >> s; REP(i, n) { counts[i % 2][s[i] - 'a']++; } cin >> s; REP(i, n) { counts[i % 2][s[i] - 'a']--; } REP(r, 2) { REP(i, 30) { if (counts[r][i] != 0) { cout << "NIE" << endl; return 0; } } } cout << "TAK" << 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 | #include<iostream> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) int counts[2][30]; int n; int main() { ios_base::sync_with_stdio(0); cin >> n; int sum = 0; string s; cin >> s; REP(i, n) { counts[i % 2][s[i] - 'a']++; } cin >> s; REP(i, n) { counts[i % 2][s[i] - 'a']--; } REP(r, 2) { REP(i, 30) { if (counts[r][i] != 0) { cout << "NIE" << endl; return 0; } } } cout << "TAK" << endl; } |