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
46
47
48
#include <iostream>

using namespace std;

int main() {
    int n = 0;
    cin >> n;

    char toysInput [ n ];
    for (int i = 0; i < n; i++)
        cin >> toysInput [ i ];

    char toysOutput [ n ];
    for (int i = 0; i < n; i++)
        cin >> toysOutput [ i ];


    bool toysReserved [n];
    for (int i = 0; i < n; i++)
        toysReserved [ i ] = false;

    for (int i = 0; i < n; i++) {
        if (i%2 == 0) {
            for (int j = 0; j < n; j += 2) {
                if ((toysInput[i] == toysOutput[j]) && (!toysReserved[j]))
                    toysReserved[ j ] = true;
            }
        } else {
            for (int j = 1; j < n; j += 2) {
                if ((toysInput[i] == toysOutput[j]) && (!toysReserved[j]))
                    toysReserved[ j ] = true;
            }
        }
    }

    bool canCreate = true;
    for (int i = 0; i < n && canCreate; i++) {
        if (!toysReserved[i])
            canCreate = false;
    }

    if(canCreate)
        cout << "TAK";
    else
        cout << "NIE";

    return 0;
}