#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int n; string A, B; cin >> n >> A >> B; array<array<int, 26>, 2> M{}; for (int i=0; i<n; i++) { M[i%2][A[i]-'a']++; M[i%2][B[i]-'a']--; } cout << ((*max_element(M[0].begin(), M[0].end()) || *max_element(M[1].begin(), M[1].end()))?"NIE\n":"TAK\n"); return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int n; string A, B; cin >> n >> A >> B; array<array<int, 26>, 2> M{}; for (int i=0; i<n; i++) { M[i%2][A[i]-'a']++; M[i%2][B[i]-'a']--; } cout << ((*max_element(M[0].begin(), M[0].end()) || *max_element(M[1].begin(), M[1].end()))?"NIE\n":"TAK\n"); return 0; } |