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
#include <iostream>
#include <vector>
using namespace std;

struct dzien {
    bool A;
    bool B;
    bool C;
};

int main () {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    vector <dzien> V(6, {false, false, false});

    int n;
    cin >> n;
    while (n--) {
        int x;
        char c;
        cin >> x >> c;
        x--;

        if (c=='A') {
            if (x==4 && V[x].A)
                x++;
            V[x].A= true;
        }
        else if (c=='B') {
            if (x==4 && V[x].B)
                x++;
            V[x].B= true;
        }
        else /*if (c=='C')*/ {
            if (x==4 && V[x].C)
                x++;
            V[x].C= true;
        }
    }

    for (int i=0; i<6; i++) {
        if ((!V[i].A || !V[i].B) || !V[i].C) {  ///jesli nie bylo dopasowania
            cout << "NIE\n";
            return 0;
        }
    }

    cout << "TAK\n";
    return 0;
}