#include <bits/stdc++.h>
#define gc getchar
#define gcu getchar_unlocked
#define fi first
#define se second
#define pb push_back
#define mod ((ll)1e9 + 7)
typedef long long ll;
using namespace std;
//===============================================================================================
int n, m;
char c;
int t[3][1009];
//===============================================================================================
int main()
{
scanf("%d", &n);
gc();
for (int i = 0; i < n; i++)
{
c = gc();
t[i & 1][c - 'a']++;
}
gc();
for (int i = 0; i < n; i++)
{
c = gc();
t[i & 1][c - 'a']--;
if (t[i & 1][c - 'a'] < 0)
{
printf("NIE\n");
return 0;
}
}
printf("TAK\n");
}
//===============================================================================================
// 5
// abcde
// fghhh
// 7
// abcdefg
// edgbcfa
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 45 | #include <bits/stdc++.h> #define gc getchar #define gcu getchar_unlocked #define fi first #define se second #define pb push_back #define mod ((ll)1e9 + 7) typedef long long ll; using namespace std; //=============================================================================================== int n, m; char c; int t[3][1009]; //=============================================================================================== int main() { scanf("%d", &n); gc(); for (int i = 0; i < n; i++) { c = gc(); t[i & 1][c - 'a']++; } gc(); for (int i = 0; i < n; i++) { c = gc(); t[i & 1][c - 'a']--; if (t[i & 1][c - 'a'] < 0) { printf("NIE\n"); return 0; } } printf("TAK\n"); } //=============================================================================================== // 5 // abcde // fghhh // 7 // abcdefg // edgbcfa |
English