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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include <sstream>
#include <vector>
#include <iostream>
#include <list>
#include <algorithm>
#include <queue>
#include <fstream>
#include <chrono>
#include <string.h>
#include <map>

using namespace std;

/*

3
4
1011
1100
1 2
2 3
2 4
2
10
10
1 2
2
10
01
1 2

 */

int max(int a, int b) {
    if (a > b) {
        return a;
    }
    return b;
}

int min(int a, int b) {
    if (a < b) {
        return a;
    }
    return b;
}

bool isMonoColour(int n, string start) {
    for (int i = 1; i < n; i++) {
        if (start[i] != start[0]) {
            return false;
        }
    }
    return true;
}

bool isLinear(int n, int tree[][2]) {
    int beginCounter[n + 1];
    int endCounter[n + 1];
    for (int i = 0; i < n + 1; i++) {
        beginCounter[i] = 0;
        endCounter[i] = 0;
    }
    for (int i = 0; i < n -1 ; i++) {
        ++beginCounter[tree[i][0]];
        ++endCounter[tree[i][1]];
        if (beginCounter[tree[i][0]] > 1 || endCounter[tree[i][1]] > 1) {
            return false;
        }
    }
    return true;
}

bool drzewoCzerwonoCzarne(int n, string start, string target, int tree[][2]) {
    if (start.compare(target) == 0) {
        return true;
    }
    if (isMonoColour(n, start)) {
        return false;
    }
    if (!isLinear(n, tree)) {
        return true;
    }
    // rosplątać drzewo, na wypadek wejścia 1 3, 3 2 czy coś takiego, i porównać ciągłe obszary kolorów, wyjście nie może być gorzsze od wejścia
    return false;
}

int findBeginning(int n, int tree[][2]) {
    bool wasSeen[n];
    for(int i = 0; i < n; i++) {
        wasSeen[i] = false;
    }
    for(int i = 0; i < n; i++) {
        wasSeen[tree[i][1] -1] = true;
    }
    for(int i = 0; i < n; i++) {
        if(!wasSeen[i]) {
            return i;
        }
    }
    return 0;       //shold never happen
}

string normalizeTree(int n, string nodes, int tree[][2]) {
    char result[n];
    int mapping[n];
    int beginning = findBeginning(n, tree);
    result[0] = nodes[beginning];
    for(int i = 0; i < n; i++) {
        mapping[tree[i][0] - 1] = tree[i][1] - 1;
    }

    return string(result, n);
}

int main() {
//
//    for (int test = 0; test < 101; test++) {
//
//        std::ifstream in_file("/Users/pro15/Downloads/but/in/" + to_string(test) + ".in");
//        std::ifstream ans_file("/Users/pro15/Downloads/but/out/" + to_string(test) + ".out");
//
//        std::cin.rdbuf(in_file.rdbuf()); //redirect std::cin to in_file!

    int t;
    cin >> t;

    bool result[t];

    for (int i = 0; i < t; i++) {
        int a, b, n;
        cin >> n;

        string start;
        string target;
        cin >> start;
        cin >> target;

        int tree[n - 1][2];
        for (int j = 0; j < n - 1; j++) {
            cin >> a;
            cin >> b;

            tree[j][0] = a;
            tree[j][1] = b;
        }
        result[i] = drzewoCzerwonoCzarne(n, start, target, tree);
    }

    for (int i = 0; i < t; i++) {
        if (result[i]) {
            cout << "TAK" << endl;
        } else {
            cout << "NIE" << endl;
        }
    }


//        std::cin.rdbuf(ans_file.rdbuf()); //redirect std::cin to in_file!
//        int correctAnswer;
//        int incorrect = 0;
////    cout << "Number of tests : " << max_size << endl;
//        for (int i = 0; i < max_size; i++) {
//            cin >> correctAnswer;
//            int myAnswer = result[i];
//            if (myAnswer != correctAnswer) {
//                incorrect++;
//                cout << "INCORRECT " << i << " myAnswer= " << myAnswer << " correct= " << correctAnswer << endl;
//            }
//            if (incorrect > 100) {
//                break;
//            }
//        }
//        if (incorrect == 0) {
//            cout << "TEST NUMBER " << test << " CORRECT" << endl;
//        }
//    }

//    auto stop =  chrono::high_resolution_clock::now();
//    auto duration = chrono::duration_cast<chrono::microseconds>(stop - start);
//    cout << "time micro seconds: " << duration.count() << endl;

    return 0;
}