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
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main(){
    int t;
    cin >> t;
    for (int j=0;j<t;j++){
        int n;
        cin >> n;
        //vector<vector<int>>gr(n);
        string w;
        string o;
        vector<bool>zm(n,false);
        cin >> w >> o;
        for (int i=0;i<n-1;i++){
            int a,b;
            cin >> a >> b;
            if(w[b-1]!=w[a-1]){
                zm[a]=zm[b]=true;
            }
        }
        bool cz=false;
        for (int i=0;i<n;i++){
            if(w[i]!=o[i] && zm[i]==false){
                cz=true;
            }
        }
        if(cz==false){
            cout << "TAK\n";
        }
        else{
            cout << "NIE\n";
        }
    }
}