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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
/* #pragma GCC optimize("O3,unroll-loops") */
#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define pb push_back
#define mp make_pair
#define all(a) begin(a),end(a)
#define FOR(x,val,to) for(int x=(val);x<int((to));++x)
#define FORE(x,val,to) for(auto x=(val);x<=(to);++x)
#define FORR(x,arr) for(auto &x: arr)
#define FORS(x,plus,arr) for(auto x = begin(arr)+(plus); x != end(arr); ++x)
#define FORREV(x,plus,arr) for(auto x = (arr).rbegin()+(plus); x !=(arr).rend(); ++x)
#define REE(s_) {cout<<s_<<'\n';exit(0);}
#define GET(arr) for(auto &i: (arr)) sc(i)
#define whatis(x) cerr << #x << " is " << (x) << endl;
#define e1 first
#define e2 second
#define INF 0x7f7f7f7f
typedef std::pair<int,int> pi;
typedef std::vector<int> vi;
typedef std::vector<std::string> vs;
typedef int64_t ll;
typedef uint64_t ull;
#define umap unordered_map
#define uset unordered_set
using namespace std;
using namespace __gnu_pbds;

#ifdef ONLINE_JUDGE
#define whatis(x) ;
#endif
#ifdef _WIN32
#define getchar_unlocked() _getchar_nolock()
#define _CRT_DISABLE_PERFCRIT_LOCKS
#endif
template<class L, class R> ostream& operator<<(ostream &os, map<L, R> P) { for(auto const &vv: P)os<<"("<<vv.first<<","<<vv.second<<")"; return os; }
template<class T> ostream& operator<<(ostream &os, set<T> V) { os<<"[";for(auto const &vv:V)os<<vv<<","; os<<"]"; return os; }
template<class T> ostream& operator<<(ostream &os, vector<T> V) { os<<"[";for(auto const &vv:V)os<<vv<<","; os<<"]"; return os; }
template<class L, class R> ostream& operator<<(ostream &os, pair<L, R> P) { os<<"("<<P.first<<","<<P.second<<")"; return os; }
inline int fstoi(const string &str){auto it=str.begin();bool neg=0;int num=0;if(*it=='-')neg=1;else num=*it-'0';++it;while(it<str.end()) num=num*10+(*it++-'0');if(neg)num*=-1;return num;}
inline void getch(char &x){while(x = getchar_unlocked(), x < 33){;}}
inline void getstr(string &str){str.clear(); char cur;while(cur=getchar_unlocked(),cur<33){;}while(cur>32){str+=cur;cur=getchar_unlocked();}}
template<typename T> inline bool sc(T &num){ bool neg=0; int c; num=0; while(c=getchar_unlocked(),c<33){if(c == EOF) return false;} if(c=='-'){ neg=1; c=getchar_unlocked(); } for(;c>47;c=getchar_unlocked()) num=num*10+c-48; if(neg) num*=-1; return true;}template<typename T, typename ...Args> inline void sc(T &num, Args &...args){ bool neg=0; int c; num=0; while(c=getchar_unlocked(),c<33){;} if(c=='-'){ neg=1; c=getchar_unlocked(); } for(;c>47;c=getchar_unlocked()) num=num*10+c-48; if(neg) num*=-1; sc(args...); }
template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; //s.find_by_order(), s.order_of_key() <- works like lower_bound
template<typename T> using ordered_map = tree<T, int, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#define N 1000001

#define whatis(x) ;
#define assert(x) ;

int main(){
    ios_base::sync_with_stdio(0);cin.tie(0);
    int n,m,q;
    sc(n,m,q);
    pair<unsigned char, unsigned char> syg[n][m]; // {len, mask}
    // keep tablice conv [8] -> position, update co przejście, by nie robić
    // modulo itd.
    FOR(i,0,n){
        FOR(x,0,m){
            string s;
            getstr(s);
            syg[i][x].e1 = s.size();
            syg[i][x].e2 = 0;
            for(int j = 0; j < s.size(); ++j){
                /* if(s[j]) */ // bruh xd.
                if(s[j] == '1')
                    syg[i][x].second ^= 1 << j;
            }
        }
    }
    // todo soft offlinowanie tych zapytań by starting {t, comp}
    /* pair<int, vector<int>> comps; // e1 -> -1 all reachable 0 row 1 col; e2 -> boundaries. */
    // w sumie nie lepszą reprezentacją trzymanie min i max reachable?
    // ale guess jeśli zamierzam robić jakiś sweep, to to też git.
    // ale random access jednak fajny, jak query by query.
    constexpr int M = 840;
    /* int compt[840][150001]; // 500MB. */
    int compt[M];
    /* pair<int,int> complr[840][15004]; // 50MB. */
    /* static pair<int,int> complr[840][15004]; // 50MB. */
    static pair<short,short> complr[840][15004]; // 50MB.
    // btw, can use shorts here <3. -> todo, use shorts.
    unsigned char modsth[9]{};
    // todo ^^ vs actual modulo, no bo to może być mem access niby, unless I
    // happen to have enough spare registers.
    // ewentualnie tylko dla 3,5,6,7 potrzebuję to ifować, a dla reszty & (mod - 1)
    for(int c = 0; c < M; ++c){
        bool goodcols[m];
        memset(goodcols,1,m);
        vi goodr, goodc;
        for(int i = 0; i < n; ++i){
            bool crrow = 1;
            for(int x = 0; x < m; ++x){
                if(syg[i][x].e1 < 2 || syg[i][x].e1 > 8)
                    __builtin_unreachable();
                bool wh = (syg[i][x].e2 >> modsth[syg[i][x].e1]) & 1;
                // prowadzą przez poziomą ulicę <==> przejście pionowe xd.
                /* goodcols[x] &= wh; */
                /* crrow &= !wh; */
                /* if(c <= 3){ */
                /*     whatis(i) */
                /*     whatis(x) */
                /*     whatis(wh) */
                /* } */
                crrow &= wh;
                // todo zamień (własnym) bitsetem, i co 64 iteracji anduj z longiem na
                // rejestrze xd.
                goodcols[x] &= !wh;
            }
            if(crrow){
                goodr.push_back(i);
            }
        }
        FOR(x,0,m){
            if(goodcols[x])
                goodc.push_back(x);
        }
        /* if(c == 113){ */
        /*     whatis(goodr) */
        /*     whatis(goodc) */
        /* } */
        /* if(c <= 3){ */
        /*     whatis(goodr) */
        /*     whatis(goodc) */
        /*     /1* FORE(x,2,8) *1/ */
        /*     /1*     whatis((int)modsth[x]) *1/ */
        /* } */
        /* whatis(goodr.size()) */
        /* whatis(goodc.size()) */
        // 3000 na kpw teście z m 15000.
        if(goodr.empty() && goodc.empty()){
            compt[c] = -1;
        }
        else if(!goodr.empty()){
            compt[c] = 0;
            /* int pr = -1; */
            int pr = 0;
            FORR(i,goodr){
                // prev + 1 .. i
                for(int x = pr; x <= i; ++x){
                    complr[c][x] = {pr, i};
                }
                /* pr = i; */
                pr = i + 1;
            }
            // prev + 1 ...
            /* for(int x = pr; x <= n; ++x){ */
            for(int x = pr; x <= n + 1; ++x){
                complr[c][x] = {pr, n};
            }
        }
        else{
            compt[c] = 1;
            int pr = 0;
            FORR(i,goodc){
                for(int x = pr; x <= i; ++x){
                    complr[c][x] = {pr, i};
                }
                pr = i + 1;
            }
            /* for(int x = pr; x <= m; ++x){ */
            for(int x = pr; x <= m + 1; ++x){ // m + 1, so that don't have to branch out stuff.
                complr[c][x] = {pr, m};
            }
        }
        for(int j = 2; j < 9; ++j){
            if(++modsth[j] == j)
                modsth[j] = 0;
        }
    }
    // 800ms.
    /* cout << complr[400][32].e2; */
    /* if(rand()%32131) */
    /*     exit(0);; */
    /* exit(0); */
    /* static pair<int,int> cyclecomplr[840][15004]; */
    // only if all types are eq btw.
    /* int tillt = 0; */
    /* // czej, co jak all -1 XD. */
    /* // -> let's wycasowanie tego. */
    /* bool alleq = 0; */
    /* // can be stuck in an infinite loop xd. */
    /* if(compt[0] != -1){ */
    /*     /1* if(++tillt == M) tillt = 0; *1/ */
    /*     // O(3000*800*800) worst case? */
    /*     // Imo tutaj def mógłbym ogarnąć jakiś sweep batch processing. */
    /*     // W ogóle to wait, jakby aplikowanie tego wielokrotne miało niby */
    /*     // działać? */
    /*     // -> minowanie l, maxowanie r po prostu w pętli xd. chyba jednak git. */
    /*     while(compt[tillt] == compt[0]) if(++tillt == M) break; */
    /*     if((alleq = (tillt == M))){ */
    /*         /1* int ct = compt[0]; *1/ */
    /*         /1* if(ct == 0){ *1/ */
    /*         /1*     FOR(stcrc,0,M){ *1/ */
    /*         /1*         pair<int,int> plr{-1,-1}; *1/ */
    /*         /1*         /2* FORE(x,0,m){ *2/ *1/ */
    /*         /1*         FORE(x,0,n){ *1/ */
    /*         /1*             pair<int,int> lr = complr[stcrc][x]; *1/ */
    /*         /1*             if(lr == plr){ *1/ */
    /*         /1*                 cyclecomplr[stcrc][x] = cyclecomplr[stcrc][x - 1]; *1/ */
    /*         /1*             } *1/ */
    /*         /1*             else{ *1/ */
    /*         /1*                 plr = lr; *1/ */
    /*         /1*                 int crc = stcrc; *1/ */
    /*         /1*                 FOR(i,0,M){ *1/ */
    /*         /1*                     if(++crc == M) *1/ */
    /*         /1*                         crc = 0; *1/ */
    /*         /1*                     pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *1/ */
    /*         /1*                     lr = move(nwlr); *1/ */
    /*         /1*                 } *1/ */
    /*         /1*                 assert(crc == stcrc); *1/ */
    /*         /1*                 cyclecomplr[stcrc][x] = lr; *1/ */
    /*         /1*             } *1/ */
    /*         /1*         } *1/ */
    /*         /1*     } *1/ */
    /*         /1* } *1/ */
    /*         /1* else{ *1/ */
    /*             /1* // wtf, how is this so slow xdd. *1/ */
    /*             /1* FOR(stcrc,0,M){ *1/ */
    /*             /1*     whatis(stcrc) *1/ */
    /*             /1*     pair<int,int> plr{-1,-1}; *1/ */
    /*             /1*     /2* FORE(x,0,n){ *2/ *1/ */
    /*             /1*     FORE(x,0,m){ *1/ */
    /*             /1*         pair<int,int> lr = complr[stcrc][x]; *1/ */
    /*             /1*         if(lr == plr){ *1/ */
    /*             /1*             cyclecomplr[stcrc][x] = cyclecomplr[stcrc][x - 1]; *1/ */
    /*             /1*         } *1/ */
    /*             /1*         else{ *1/ */
    /*             /1*             plr = lr; *1/ */
    /*             /1*             int crc = stcrc; *1/ */
    /*             /1*             /2* FOR(i,0,M){ *2/ *1/ */
    /*             /1*             /2*     if(++crc == M) *2/ *1/ */
    /*             /1*             /2*         crc = 0; *2/ *1/ */
    /*             /1*             /2*     pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *2/ *1/ */
    /*             /1*             /2*     lr = move(nwlr); *2/ *1/ */
    /*             /1*             /2* } *2/ *1/ */
    /*             /1*             /2* whatis(crc) *2/ *1/ */
    /*             /1*             // xd. *1/ */
    /*             /1*             const int itcnt = M - crc - 1; *1/ */
    /*             /1*             const int itcnt2 = crc; *1/ */
    /*             /1*             /2* FOR(i,0,M-crc-1){ *2/ *1/ */
    /*             /1*             FOR(i,0,itcnt){ *1/ */
    /*             /1*                 ++crc; *1/ */
    /*             /1*                 pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *1/ */
    /*             /1*                 lr = move(nwlr); *1/ */
    /*             /1*             } *1/ */
    /*             /1*             /2* whatis(crc) *2/ *1/ */
    /*             /1*             /2* whatis(M-1) *2/ *1/ */
    /*             /1*             assert(crc == M - 1); *1/ */
    /*             /1*             crc = 0; *1/ */
    /*             /1*             pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *1/ */
    /*             /1*             lr = move(nwlr); *1/ */
    /*             /1*             /2* FOR(i,0,crc){ *2/ *1/ */
    /*             /1*             FOR(i,0,itcnt2){ *1/ */
    /*             /1*                 ++crc; *1/ */
    /*             /1*                 pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *1/ */
    /*             /1*                 lr = move(nwlr); *1/ */
    /*             /1*             } *1/ */
    /*             /1*             assert(crc == stcrc); *1/ */
    /*             /1*             cyclecomplr[stcrc][x] = lr; *1/ */
    /*             /1*             // not the most game-changing of opts. *1/ */
    /*             /1*         } *1/ */
    /*             /1*     } *1/ */
    /*             /1* } *1/ */
    /*         /1* } *1/ */
    /*         /1* if(ct == 0){ *1/ */
    /*         /1*     lr = complr[crc][a]; *1/ */
    /*         /1* } *1/ */
    /*         /1* else{ *1/ */
    /*         /1*     lr = complr[crc][b]; *1/ */
    /*         /1*     for(;crc != tillt;){ *1/ */
    /*         /1*         if(d >= lr.e1 && d <= lr.e2){ *1/ */
    /*         /1*             break; *1/ */
    /*         /1*         } *1/ */
    /*         /1*         if(++crc == M) *1/ */
    /*         /1*             crc = 0; *1/ */
    /*         /1*         pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; *1/ */
    /*         /1*         lr = move(nwlr); *1/ */
    /*         /1*     } *1/ */
    /*         /1* } *1/ */
    /*     } */
    /* } */
    constexpr int S = 11;
    /* constexpr int S = 10; */ // lol, way worse z == 10 vs == 11 xd.
    /* constexpr int S = 12; // tu juz o eps wiecej. */
    static pair<short,short> lftcomplr[840][15004][S];
    /* for(int crc = 840 - 1; crc >= 0; --crc){ */
    // dla 839 id i guess.
    FORE(x,0,compt[839] == 0 ? n : m){
        for(int j = 0; j < S; ++j)
            lftcomplr[839][x][j] = complr[839][x];
    }
    constexpr int sthlg = 15002;
    for(int i = 0; i < 840; ++i){
        /* complr[i][sthlg].e2 = sthlg; */
        complr[i][sthlg] = {0, sthlg};
    }
    for(int i = 0; i < 840; ++i){
        for(int j = 0; j < S; ++j){
            lftcomplr[i][sthlg][j] = {0, sthlg};
        }
    }
    for(int crc = 840 - 2; crc >= 0; --crc){
        int ct = compt[crc];
        /* if(ct == 0){ */
            const int till = ct == 0 ? n : m;
            pair<int,int> plr{-1,-1};
            FORE(x,0,till){
            /* FORE(x,0,n){ */
                pair<int,int> lr = complr[crc][x];
                if(lr == plr){
                    for(int j = 0; j < S; ++j)
                        lftcomplr[crc][x][j] = lftcomplr[crc][x - 1][j];
                }
                else{
                    plr = lr;
                    const int nxcrc = crc + 1;
                    pair<short,short> nwlr = compt[nxcrc] == ct ? pair<short,short>{complr[nxcrc][lr.e1].e1, complr[nxcrc][lr.e2].e2} : pair<short,short>{0, sthlg};
                    lftcomplr[crc][x][0] = std::move(nwlr);
                    int j;
                    for(j = 1; j < S; ++j){
                        if(crc + (1 << (j - 1)) >= 840)
                            break;
                        // o ops faster.
                        lftcomplr[crc][x][j].e1 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e1][j - 1].e1;
                        lftcomplr[crc][x][j].e2 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e2][j - 1].e2;
                    }
                    for(; j < S; ++j){
                        lftcomplr[crc][x][j].e1 = lftcomplr[839][lftcomplr[crc][x][j - 1].e1][j - 1].e1;
                        lftcomplr[crc][x][j].e2 = lftcomplr[839][lftcomplr[crc][x][j - 1].e2][j - 1].e2;
                    }
                }
            }
        /* } */
        /* else{ */
        /*     const int till = ct == 0 ? n : m; */
        /*     pair<int,int> plr{-1,-1}; */
        /*     /1* FORE(x,0,till){ *1/ */
        /*     FORE(x,0,m){ */
        /*         pair<int,int> lr = complr[crc][x]; */
        /*         if(lr == plr){ */
        /*             for(int j = 0; j < S; ++j) */
        /*                 lftcomplr[crc][x][j] = lftcomplr[crc][x - 1][j]; */
        /*         } */
        /*         else{ */
        /*             plr = lr; */
        /*             const int nxcrc = crc + 1; */
        /*             pair<short,short> nwlr = compt[nxcrc] == ct ? pair<short,short>{complr[nxcrc][lr.e1].e1, complr[nxcrc][lr.e2].e2} : pair<short,short>{0, sthlg}; */
        /*             lftcomplr[crc][x][0] = std::move(nwlr); */
        /*             int j; */
        /*             for(j = 1; j < S; ++j){ */
        /*                 if(crc + (1 << (j - 1)) >= 840) */
        /*                     break; */
        /*                 // o ops faster. */
        /*                 lftcomplr[crc][x][j].e1 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e1][j - 1].e1; */
        /*                 lftcomplr[crc][x][j].e2 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e2][j - 1].e2; */
        /*             } */
        /*             for(; j < S; ++j){ */
        /*                 lftcomplr[crc][x][j].e1 = lftcomplr[839][lftcomplr[crc][x][j - 1].e1][j - 1].e1; */
        /*                 lftcomplr[crc][x][j].e2 = lftcomplr[839][lftcomplr[crc][x][j - 1].e2][j - 1].e2; */
        /*             } */
        /*         } */
        /*     } */
        /* } */
        /* else{ */
        /*     pair<int,int> plr{-1,-1}; */
        /*     FORE(x,0,m){ */
        /*         pair<int,int> lr = complr[crc][x]; */
        /*         if(lr == plr){ */
        /*             /1* for(int x = 0; x < S; ++x) *1/ */
        /*                 /1* lftcomplr[crc][x][x] = lftcomplr[crc][x - 1][x]; *1/ */
        /*                 // no shadowing at all there. */
        /*             for(int j = 0; j < S; ++j) */
        /*                 lftcomplr[crc][x][j] = lftcomplr[crc][x - 1][j]; */
        /*         } */
        /*         else{ */
        /*             plr = lr; */
        /*             /1* int crc = stcrc; *1/ */
        /*             /1* FOR(i,0,M){ *1/ */
        /*             /1*     if(++crc == M) *1/ */
        /*             /1*         crc = 0; *1/ */
        /*             /1* int nxcrc = crc + 1 == M ? 0 : crc + 1; *1/ */
        /*             int nxcrc = crc + 1; */
        /*             /1* pair<short,short> nwlr = {complr[nxcrc][lr.e1].e1, complr[nxcrc][lr.e2].e2}; *1/ */
        /*             /1* pair<short,short> nwlr = compt[nxcrc] == ct ? pair<short,short>{complr[nxcrc][lr.e1].e1, complr[nxcrc][lr.e2].e2} : pair<short,short>{0, m}; *1/ */
        /*             pair<short,short> nwlr = compt[nxcrc] == ct ? pair<short,short>{complr[nxcrc][lr.e1].e1, complr[nxcrc][lr.e2].e2} : pair<short,short>{0, sthlg}; */
        /*             // nvm, przecież ja tym indeksuję, więc jakoś muszę uważać */
        /*             // na wartości jakie tam mam, albo to mocno caseować. */
        /*             /1* lr = move(nwlr); *1/ */
        /*             /1* } *1/ */
        /*             /1* assert(crc == stcrc); *1/ */
        /*             /1* cyclecomplr[stcrc][x] = lr; *1/ */
        /*             lftcomplr[crc][x][0] = std::move(nwlr); */
        /*             /1* for(int j = 1; j < S; ++j){ *1/ */
        /*             for(int j = 1; crc + (1 << (j - 1)) < 840; ++j){ */
        /*                 assert(j < S); */
        /*                 lftcomplr[crc][x][j].e1 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e1][j - 1].e1; */
        /*                 lftcomplr[crc][x][j].e2 = lftcomplr[crc + (1 << (j - 1))][lftcomplr[crc][x][j - 1].e2][j - 1].e2; */
        /*             } */
        /*         } */
        /*     } */
        /* } */
        /* if(crc > 830){ */
        /*     whatis(crc) */
        /*     for(int x = 0; x < 4; ++x){ */
        /*         whatis(x) */
        /*         for(int j = 0; j < 10; ++j){ */
        /*             whatis(lftcomplr[crc][x][j]) */
        /*         } */
        /*     } */
        /* } */
    }
    /* whatis(compt[0]) */
    /* whatis(compt[1]) */
    /* whatis(compt[2]) */
    /* whatis(compt[3]) */
    // binary lifting 4 overkill
    // ...or maybe I indeed might need it xd.
    ll ress = 0;
    /* int rest[q]; */
    /* vector<array<int,5>> qus[M]; */
    /* FOR(i,0,q){ */
    /*     int _t,a,b,c,d; */
    /*     sc(_t,a,b,c,d); */
    /*     rest[i] = _t; */
    /*     qus[_t % M].emplace_back(a, b, c, d, i); */
    /* } */
    /* whatis(alleq) */
    /* set<pair<int,pi>> ilecomps; */
    while(q--){
    /* FOR(crc,0,M){ */
        /* int t,a,b,c,d; */
        int _t,a,b,c,d;
        /* if(q%100000 == 0) */
        /*     whatis(_t) */
        sc(_t,a,b,c,d);
        int res = 0;
        int crc = _t % M;
        /* whatis(crc) */
        /* int ct = compt[t]; */
        int ct = compt[crc];
        /* whatis(ct) */
        /* if(compt[t] == -1){ */
        if(ct == -1){
            /* cout << "0\n"; */
            cout << _t << '\n';
            continue;
        }
        pair<int,int> lr;
        if(ct == 0){
            lr = complr[crc][a];
            /* b = a; */
            // confused c/d for a/b.
            d = c;
        }
        else{
            lr = complr[crc][b];
            /* a = b; */
            c = d;
        }
        if(c >= lr.e1 && c <= lr.e2){
            cout << _t << '\n';
            continue;
        }
        /* for(;;){ */
        {
            for(int j = S - 1; j >= 0; --j){
                whatis(j)
                assert(complr[crc][lr.e1].e1 == lr.e1);
                assert(complr[crc][lr.e2].e2 == lr.e2);
                assert(c < complr[crc][lr.e1].e1 || c > complr[crc][lr.e2].e2);
                if(crc == 839){
                    /* if(c < complr[0][lr.e1].e1 || c > complr[0][lr.e2].e2){ */
                    if(compt[0] == ct && (c < complr[0][lr.e1].e1 || c > complr[0][lr.e2].e2)){
                        lr = {complr[0][lr.e1].e1, complr[0][lr.e2].e2};
                        ++res;
                        crc = 0;
                        j = S;
                        whatis("setto839")
                        continue;
                    }
                    else{
                        break;
                    }
                }
                int nxt = crc + (1 << (j - 1));
                // opt away obv.
                if(nxt >= 840)
                    continue;
                // unless todo, to allow constant time rollovers.
                short nwl = lftcomplr[crc][lr.e1][j].e1;
                short nwr = lftcomplr[crc][lr.e2][j].e2;
                if(c < nwl || c > nwr){ // jeszcze nie koniec, so it's allowed.
                    whatis(lr)
                    whatis(nwl)
                    whatis(nwr)
                    int nxcrc = min(crc + (1 << j), 839);
                    whatis(nxcrc)
                    res += nxcrc - crc;
                    crc = nxcrc;
                    lr = {nwl, nwr};
                    /* if(crc == 839 && c < complr[0][lr.e1].e1 || c > complr[0][lr.e2].e2){ */
                    /*     lr = {complr[0][lr.e1].e1, complr[0][lr.e2].e2}; */
                    /*     ++res; */
                    /*     crc = 0; */
                    /*     j = S; */
                    /* } */
                    whatis("settonot839")
                }
            }
            whatis(res)
            // that should always hold.
            assert(complr[crc][lr.e1].e1 == lr.e1);
            assert(complr[crc][lr.e2].e2 == lr.e2);
            /* assert(a < complr[crc][lr.e1].e1 || a > complr[lr.e1][lr.e2].e2); */
            whatis(crc)
            whatis((crc + 1) % 840)
            whatis(lr)
            whatis(c)
            // XD, inny typ przecież też może być alterantywnie......
            /* whatis(complr[(crc + 1) % 840][lr.e1].e1) */
            /* whatis(complr[(crc + 1) % 840][lr.e2].e2) */
            assert(c < complr[crc][lr.e1].e1 || c > complr[crc][lr.e2].e2);
            /* assert(c >= complr[(crc + 1) % 840][lr.e1].e1 && c <= complr[(crc + 1) % 840][lr.e2].e2); */
            assert(compt[(crc + 1) % 840] != ct || (c >= complr[(crc + 1) % 840][lr.e1].e1 && c <= complr[(crc + 1) % 840][lr.e2].e2));
            ++res;
            /* break; */
        }
        /* ilecomps.insert({crc, lr}); */
        // todo, batch processing, make checks against registers.
        /* if(compt[t] == 0){ */
        /* int tillt = -1; */
        // can be stuck in an infinite loop xd.
        // tera nie potrzebuję niby i guess.
        /* if(!alleq){ */
        /*     tillt = crc; */
        /*     /1* if(++tillt == M) tillt = 0; *1/ */
        /*     /1* while(tillt != crc && compt[tillt] == ct) if(++tillt == M) tillt = 0; *1/ */
        /*     while(compt[tillt] == ct) if(++tillt == M) tillt = 0; */
        /* } */
        /* else{ */
        /*     /1* if(ct == 0){ *1/ */
        /*     /1*     whatis("xd") *1/ */
        /*     /1*     while(c < cyclecomplr[crc][lr.e1].e1 || c > cyclecomplr[crc][lr.e2].e2){ *1/ */
        /*     /1*         res += M; *1/ */
        /*     /1*         pair<int,int> nwlr = {cyclecomplr[crc][lr.e1].e1, cyclecomplr[crc][lr.e2].e2}; *1/ */
        /*     /1*         assert(nwlr != lr); *1/ */
        /*     /1*         lr = move(nwlr); *1/ */
        /*     /1*     } *1/ */
        /*     /1*     whatis(res) *1/ */
        /*     /1* } *1/ */
        /*     /1* else{ *1/ */
        /*     /1*     whatis("xd2") *1/ */
        /*     /1*     while(d < cyclecomplr[crc][lr.e1].e1 || d > cyclecomplr[crc][lr.e2].e2){ *1/ */
        /*     /1*         res += M; *1/ */
        /*     /1*         pair<int,int> nwlr = {cyclecomplr[crc][lr.e1].e1, cyclecomplr[crc][lr.e2].e2}; *1/ */
        /*     /1*         whatis(nwlr) *1/ */
        /*     /1*         assert(nwlr != lr); *1/ */
        /*     /1*         lr = move(nwlr); *1/ */
        /*     /1*     } *1/ */
        /*     /1*     whatis(res) *1/ */
        /*     /1* } *1/ */
        /* } */
        /* while(compt[tillt] == ct) if(++tillt == M) tillt = 0; */
        /* if(tillt == crc){ */
        /*     tillt = -1; */
        /* } */
        /* if(ct == 0){ */
        /*     /1* lr = complr[crc][a]; *1/ */
        /*     /1* int tillt = crc; *1/ */
        /*     /1* while(compt[crc] == ct) if(++crc == M) crc = 0; *1/ */
        /*     /1* for(;;){ *1/ */
        /*     for(;crc != tillt;){ */
        /*         if(c >= lr.e1 && c <= lr.e2){ */
        /*             break; */
        /*         } */
        /*         ++res; */
        /*         if(++crc == M) */
        /*         /1* if(__builtin_expect_with_probability(++crc == M, 1, 1.0/M)) *1/ */
        /*         /1* if(__builtin_expect(++crc == M, 0)) *1/ */
        /*             crc = 0; */
        /*         // get rid of branch prob. */
        /*         // (tak jak z lr.e2 + 1 git jest) */
        /*         /1* if(compt[crc] != ct) *1/ */
        /*         /1*     break; *1/ */
        /*         /1* pair<int,int> nwlr = {lr.e1 ? complr[crc][lr.e1 - 1].e1 : 0, complr[crc][lr.e2 + 1].e2}; *1/ */
        /*         pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; */
        /*         lr = move(nwlr); */
        /*     } */
        /* } */
        /* else{ */
        /*     /1* whatis("unimpl") *1/ */
        /*     /1* lr = complr[crc][b]; *1/ */
        /*     /1* for(;;){ *1/ */
        /*     for(;crc != tillt;){ */
        /*         if(d >= lr.e1 && d <= lr.e2){ */
        /*             break; */
        /*         } */
        /*         ++res; */
        /*         // btw, może memcpy podwojenie arrayu po prostu? xd. */
        /*         // bo meh ifowanie. */
        /*         if(++crc == M) */
        /*         /1* if(__builtin_expect_with_probability(++crc == M, 1, 1.0/M)) *1/ */
        /*         /1* if(__builtin_expect(++crc == M, 0)) *1/ */
        /*             crc = 0; */
        /*         // mogę tryw wyoptować comp stąd btw, dając preempitive maxt. */
        /*         // -> let's do that xd. (and comp runtimes) */
        /*         /1* if(compt[crc] != ct) *1/ */
        /*         /1*     break; *1/ */
        /*         /1* pair<int,int> nwlr = {lr.e1 ? complr[crc][lr.e1 - 1].e1 : 0, complr[crc][lr.e2 + 1].e2}; *1/ */
        /*         pair<int,int> nwlr = {complr[crc][lr.e1].e1, complr[crc][lr.e2].e2}; */
        /*         lr = move(nwlr); */
        /*     } */
        /* } */
        /* whatis(res) */
        /* cout << res << '\n'; */
        cout << _t + res << '\n';
        /* ress += _t + res; */
        ress += res;
        /* break; */
        // prepro phase is cheap af w porównaniu do queries; 0.13s na kompie na prepro mi zajmuje, a po kilkanaście s per 100k queries...
    }
    /* cout << ress << '\n'; */
    /* whatis(ilecomps.size()) */
}