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
185
186
187
#include<cstdio>
#include<vector>
#include<algorithm>
#include<set>
#include<cstdlib>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef pair<int,LL> PIL;
typedef pair<LL,LL> PLL;
typedef vector<PIL> VPIL;
typedef vector<PLL> VPLL;
typedef vector<LL> VLL;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<PII> VPII;
typedef vector<VPII> VVPII;
#define PB push_back
#define MP make_pair
#define ST first
#define ND second
#define ALL(c) (c).begin(),(c).end()
//#define FOREACH(it,c,i) for(auto it=(c).begin()+(i);it!=(c).end();++it)
#define FOREACH(it,c) for(auto it=(c).begin();it!=(c).end();++it)
#define SIZE(c) (int)(c).size()
const int INF=1000000007;
struct mama{
    vector<set<int>> wier,kol;
    void resize(int n,int m){
        wier.resize(n);
        kol.resize(m);
    }
    void add(int w,int k){
        wier[w].insert(k);
        kol[k].insert(w);
    }
    int checkkol(int k,int b){
        auto it=kol[k].lower_bound(b);
        if(it!=kol[k].end())
            return *it;
        else
            return INF;
    }
    int checkwier(int k,int b){
        auto it=wier[k].lower_bound(b);
        if(it!=wier[k].end())
            return *it;
        else
            return INF;
    }
    int check(int k,int b,bool z){
        if(z)
            return checkwier(k,b);
        else
            return checkkol(k,b);
    }
};
mama ma;
bool natrasie(set<PII> &st,int e,int f){
    auto it=st.lower_bound(MP(e,f));
    auto it2=it--;
    #define a it->ST
    #define b it->ND
    #define c it2->ST
    #define d it2->ND
    return (e==c && b<=f && f<=d)||(f==b&&e<=c&&a<=e);
    #undef a
    #undef b
    #undef c
    #undef d
}
set<PII> trd,trg;
//void prtr(){
//    for(auto it:trd)
//        printf("v%d %d\n",it.ST,it.ND);
//    for(auto it:trg)
//        printf("^%d %d\n",it.ND,it.ST);
//
//}
//void checkset(set<PII>& st,int x){
//    int s=-2;
//    for(auto &it:st){
//        if(it.ND<=s)
//            printf("dupa%d\n",x);
//        s=it.ND;
//    }
//}
void nowatrasa(set<PII>&st,int w,int k,bool z){
//    for(auto& itt:st)
//        printf(">%d %d\n",itt.ST,itt.ND);
    auto it=st.insert(MP(w-1,k+1)).ST;
//    if(it->ST==-1)
//        puts("c");
    auto ite=it;
    int p;
    ++ite;
    int xy=0;
    while(it!=++ite){
    //    printf("<%d>\n",xy++);
        --ite;
     //   printf(">>>%d %d\n",it->ST,it->ND);
        auto it2=it,it3=it;
        it2--;
        it3++;
   //     puts("a");
        while(it->ST<=it2->ST && it->ND>=it2->ND){
            st.erase(it2);
            it2=it;
            it2--;
        }
   //     puts("c");
        while(it3!=st.end() && it->ST<=it3->ST && it->ND>=it3->ND){
   //         puts("D");
            if(ite==it3)
                ite++;
 //           puts("E");
//            if(it3!=st.end())
//                printf("%d %d\n",it3->ST,it3->ND);
//            else
//                puts("Q");
            st.erase(it3);
            it3=it;
            it3++;
          //  puts("F");
        }
      //  puts("b");
        p=ma.check(it2->ND,it2->ST,!z);
        if(p<=it->ST){
            it=st.insert(MP(p-1,it2->ND+1)).ST;
//            if(it->ST==-1)
//                puts("a");
            continue;
        }
      //  printf("%d %d\n",it->ST,it->ND);
//        if(it->ST==-1)
//            puts("d");
        p=ma.check(it->ST,it2->ND,z);
        if(p<=it->ND){
            it=st.insert(MP(it->ST-1,p+1)).ST;
//            if(it->ST==-1){
//                puts("b");
//                prtr();
//            }
            continue;
        }
        ++it;
    }
}
int main(){
    int n,m,k,x=0,r,c,z;
    scanf("%d%d%d",&n,&m,&k);
    ma.resize(n,m);

    trg.insert(MP(-1,0));
    trg.insert(MP(m-1,n));
    trd.insert(MP(-1,0));
    trd.insert(MP(n-1,m));
    while(k--){
     //   printf("%d\n",k);
        scanf("%d%d%d",&r,&c,&z);
        r^=x;
        c^=x;
        r%=n;
        c%=m;
        int nd=natrasie(trd,r,c);
        int ng=natrasie(trg,c,r);
        if(nd && ng){
            printf("TAK\n");
            x^=z;
            continue;
        }
        ma.add(r,c);
        printf("NIE\n");
        if(nd){
//            if(r==18 && c==28)
//                prtr();
            nowatrasa(trd,r,c,1);
//            checkset(trd,k);
        }
        if(ng){
     //       printf("%d %d %d\n",c,r,0);
            nowatrasa(trg,c,r,0);
 //           checkset(trg,k);
        }
    }
}