QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#294918#4829. Mark on a Graphucup-team1055#AC ✓2ms3812kbC++207.4kb2023-12-30 17:26:112023-12-30 17:26:12

Judging History

你现在查看的是最新测评结果

  • [2023-12-30 17:26:12]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:3812kb
  • [2023-12-30 17:26:11]
  • 提交

answer

#line 2 "/Users/noya2/Desktop/Noya2_library/template/template.hpp"
using namespace std;

#include<bits/stdc++.h>
#line 1 "/Users/noya2/Desktop/Noya2_library/template/inout_old.hpp"
namespace noya2 {

template <typename T, typename U>
ostream &operator<<(ostream &os, const pair<T, U> &p){
    os << p.first << " " << p.second;
    return os;
}
template <typename T, typename U>
istream &operator>>(istream &is, pair<T, U> &p){
    is >> p.first >> p.second;
    return is;
}

template <typename T>
ostream &operator<<(ostream &os, const vector<T> &v){
    int s = (int)v.size();
    for (int i = 0; i < s; i++) os << (i ? " " : "") << v[i];
    return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &v){
    for (auto &x : v) is >> x;
    return is;
}

void in() {}
template <typename T, class... U>
void in(T &t, U &...u){
    cin >> t;
    in(u...);
}

void out() { cout << "\n"; }
template <typename T, class... U, char sep = ' '>
void out(const T &t, const U &...u){
    cout << t;
    if (sizeof...(u)) cout << sep;
    out(u...);
}

template<typename T>
void out(const vector<vector<T>> &vv){
    int s = (int)vv.size();
    for (int i = 0; i < s; i++) out(vv[i]);
}

struct IoSetup {
    IoSetup(){
        cin.tie(nullptr);
        ios::sync_with_stdio(false);
        cout << fixed << setprecision(15);
        cerr << fixed << setprecision(7);
    }
} iosetup_noya2;

} // namespace noya2
#line 1 "/Users/noya2/Desktop/Noya2_library/template/const.hpp"
namespace noya2{

const int iinf = 1'000'000'007;
const long long linf = 2'000'000'000'000'000'000LL;
const long long mod998 =  998244353;
const long long mod107 = 1000000007;
const long double pi = 3.14159265358979323;
const vector<int> dx = {0,1,0,-1,1,1,-1,-1};
const vector<int> dy = {1,0,-1,0,1,-1,-1,1};
const string ALP = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const string alp = "abcdefghijklmnopqrstuvwxyz";
const string NUM = "0123456789";

void yes(){ cout << "Yes\n"; }
void no(){ cout << "No\n"; }
void YES(){ cout << "YES\n"; }
void NO(){ cout << "NO\n"; }
void yn(bool t){ t ? yes() : no(); }
void YN(bool t){ t ? YES() : NO(); }

} // namespace noya2
#line 1 "/Users/noya2/Desktop/Noya2_library/template/utils.hpp"
namespace noya2{

unsigned long long inner_binary_gcd(unsigned long long a, unsigned long long b){
    if (a == 0 || b == 0) return a + b;
    int n = __builtin_ctzll(a); a >>= n;
    int m = __builtin_ctzll(b); b >>= m;
    while (a != b) {
        int mm = __builtin_ctzll(a - b);
        bool f = a > b;
        unsigned long long c = f ? a : b;
        b = f ? b : a;
        a = (c - b) >> mm;
    }
    return a << min(n, m);
}

template<typename T> T gcd_fast(T a, T b){ return static_cast<T>(inner_binary_gcd(abs(a),abs(b))); }

long long sqrt_fast(long long n) {
    if (n <= 0) return 0;
    long long x = sqrt(n);
    while ((x + 1) * (x + 1) <= n) x++;
    while (x * x > n) x--;
    return x;
}

template<typename T> T floor_div(const T n, const T d) {
    assert(d != 0);
    return n / d - static_cast<T>((n ^ d) < 0 && n % d != 0);
}

template<typename T> T ceil_div(const T n, const T d) {
    assert(d != 0);
    return n / d + static_cast<T>((n ^ d) >= 0 && n % d != 0);
}

template<typename T> void uniq(vector<T> &v){
    sort(v.begin(),v.end());
    v.erase(unique(v.begin(),v.end()),v.end());
}

template <typename T, typename U> inline bool chmin(T &x, U y) { return (y < x) ? (x = y, true) : false; }

template <typename T, typename U> inline bool chmax(T &x, U y) { return (x < y) ? (x = y, true) : false; }

template<typename T> inline bool range(T l, T x, T r){ return l <= x && x < r; }

} // namespace noya2
#line 8 "/Users/noya2/Desktop/Noya2_library/template/template.hpp"

#define rep(i,n) for (int i = 0; i < (int)(n); i++)
#define repp(i,m,n) for (int i = (m); i < (int)(n); i++)
#define reb(i,n) for (int i = (int)(n-1); i >= 0; i--)
#define all(v) (v).begin(),(v).end()

using ll = long long;
using ld = long double;
using uint = unsigned int;
using ull = unsigned long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using pil = pair<int,ll>;
using pli = pair<ll,int>;

namespace noya2{

/* ~ (. _________ . /) */

}

using namespace noya2;


#line 2 "c.cpp"

#line 2 "/Users/noya2/Desktop/Noya2_library/misc/rng.hpp"

#line 4 "/Users/noya2/Desktop/Noya2_library/misc/rng.hpp"

namespace noya2 {

// [0, 2^64 - 1)
ull rng() {
  static ull _x = 88172645463325252UL;
  return _x ^= _x << 7, _x ^= _x >> 9;
}

// [l, r]
ll rng(ll l, ll r) {
  assert(l <= r);
  return l + rng() % ull(r - l + 1);
}

// [l, r)
ll randint(ll l, ll r) {
  assert(l < r);
  return l + rng() % ull(r - l);
}

// [0.0, 1.0)
ld rnd() { return rng() * 5.42101086242752217004e-20; }
// [l, r)
ld rnd(ld l, ld r) {
  assert(l < r);
  return l + rnd() * (r - l);
}

} // namespace noya2
#line 4 "c.cpp"

ll tot = 0, cnt = 0;
map<int,ll> mp;

void jikken(){
    int n = 1000;
    int m = 5000;
    set<pii> st;
    vector<int> deg(n,0);
    rep(tt,m){
        while (true){
            int u = randint(0,n);
            int v = randint(0,n);
            if (u > v) swap(u,v);
            if (u == v) continue;
            if (st.contains(pii(u,v))) continue;
            st.insert(pii(u,v));
            deg[u]++;
            deg[v]++;
            break;
        }
    }
    int mi = iinf, ma = -1;
    rep(i,n){
        chmin(mi,deg[i]);
        chmax(ma,deg[i]);
    }
    tot += ma;
    cnt += 1;
    mp[ma]++;
}

void solve(){
    // jikken(); return ;
    int n, m; in(n,m);
    vector<int> deg(n,0);
    set<pii> st;
    auto exist = [&](int u, int v){
        if (u > v) swap(u,v);
        return st.contains(pii(u,v));
    };
    auto add_edge = [&](int u, int v){
        if (u > v) swap(u,v);
        st.insert(pii(u,v));
        deg[u]++;
        deg[v]++;
    };
    rep(i,m){
        int u, v; in(u,v); u--, v--;
        add_edge(u,v);
    }
    vector<int> ids(n); iota(all(ids),0);
    sort(all(ids),[&](int l, int r){
        return deg[l] > deg[r];
    });
    if (deg[ids[0]] != deg[ids[1]] && deg[ids[1]] != deg[ids[2]] && deg[ids[2]] != deg[ids[3]]){
        if (exist(ids[0],ids[1]) && exist(ids[0],ids[2])){
            out("ok");
            return ;
        }
    }
    vector<pii> add;
    auto random_add = [&](int v){
        reb(i,n){
            if (exist(v,ids[i])) continue;
            add.emplace_back(v,ids[i]);
            add_edge(v,ids[i]);
            return ;
        }
    };
    if (!exist(ids[0],ids[1])){
        add.emplace_back(ids[0],ids[1]);
        add_edge(ids[0],ids[1]);
    }
    if (!exist(ids[0],ids[2])){
        add.emplace_back(ids[0],ids[2]);
        add_edge(ids[0],ids[2]);
    }
    if (deg[ids[2]] == deg[ids[3]]){
        if (!exist(ids[1],ids[2])){
            add.emplace_back(ids[1],ids[2]);
            add_edge(ids[1],ids[2]);
        }
        else {
            random_add(ids[2]);
        }
    }
    if (deg[ids[1]] == deg[ids[2]]){
        random_add(ids[0]);
        random_add(ids[1]);
    }
    if (deg[ids[0]] == deg[ids[1]]){
        random_add(ids[0]);
    }
    out("mark");
    out(add.size());
    for (auto [u, v] : add){
        out(u+1,v+1);
    }
}

int main(){
    int t = 1; // in(t);
    while (t--) { solve(); }
    // out(tot,cnt);
    // out(ld(tot)/ld(cnt));
    // for (auto [ma, c] : mp) out(ma,c);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3628kb

input:

1000 3560
603 151
415 20
102 569
895 552
678 734
24 614
689 518
440 223
751 919
223 433
711 551
502 634
706 583
812 501
514 535
780 751
720 530
532 384
888 139
864 791
292 675
171 881
30 592
464 557
280 299
654 650
894 335
250 532
792 10
83 969
118 771
579 300
852 983
243 940
957 939
817 889
911 319...

output:

mark
2
733 310
733 252

input:

1000 3562
950 554
396 217
466 376
330 865
163 684
50 833
648 137
781 1000
184 95
844 383
831 175
48 355
279 904
167 379
278 494
582 250
506 567
209 500
64 422
253 49
663 368
964 882
292 403
831 643
999 851
125 553
102 506
827 437
726 125
932 719
641 339
721 655
102 790
267 793
201 155
186 576
898 36...

output:

ok

result:

ok all right

Test #2:

score: 100
Accepted
time: 1ms
memory: 3632kb

input:

1000 2000
457 335
160 497
464 992
892 255
853 3
308 301
970 363
541 299
89 418
425 128
626 827
603 854
484 874
755 295
607 483
798 552
356 850
320 357
254 940
675 901
168 525
301 636
520 555
773 910
343 701
889 966
218 529
909 950
71 64
682 284
424 138
721 792
670 544
386 72
654 909
725 235
592 437
...

output:

mark
2
747 761
747 727

input:

1000 2002
610 181
640 320
118 165
377 313
621 518
358 293
525 365
912 594
562 553
541 519
660 299
428 406
670 489
127 722
130 848
332 232
333 220
537 547
522 665
610 982
842 663
236 995
318 614
193 126
257 999
906 319
276 553
532 563
3 629
982 741
685 786
411 279
165 960
167 507
489 385
605 104
965 ...

output:

ok

result:

ok all right

Test #3:

score: 100
Accepted
time: 2ms
memory: 3740kb

input:

1000 5000
449 632
597 26
701 322
249 190
411 770
666 596
989 995
112 861
445 818
544 659
24 680
739 593
344 439
193 932
600 526
574 869
216 918
716 793
259 686
555 993
255 578
659 271
328 524
729 672
39 771
241 866
27 790
417 109
56 403
338 299
387 232
280 306
589 794
833 419
900 802
54 697
539 807
...

output:

mark
4
869 539
869 566
869 673
539 673

input:

1000 5004
258 506
817 737
458 45
208 588
601 845
791 170
361 150
350 177
473 34
977 914
578 699
634 106
213 407
601 442
387 464
647 928
128 762
345 860
821 596
976 605
178 835
60 376
933 471
116 632
467 792
769 215
464 286
956 152
726 21
744 533
612 419
42 123
693 34
915 870
722 697
256 532
649 530
...

output:

ok

result:

ok all right

Test #4:

score: 100
Accepted
time: 1ms
memory: 3656kb

input:

1000 3156
347 398
792 278
754 442
413 757
391 130
636 625
207 437
81 415
47 974
887 779
524 619
379 894
868 594
653 919
29 117
123 867
632 505
648 147
130 420
495 876
637 659
882 348
462 878
282 646
398 525
419 224
926 448
305 934
855 570
396 345
774 918
336 123
502 491
984 783
845 142
790 594
754 4...

output:

mark
2
115 418
115 222

input:

1000 3158
540 943
439 852
904 654
845 585
154 753
297 533
215 276
159 469
266 325
123 439
16 909
157 346
810 843
150 509
394 426
811 611
876 355
492 105
437 788
885 38
865 396
20 309
397 703
287 297
253 812
456 465
157 28
766 878
918 911
74 668
310 817
609 811
394 334
639 127
836 887
748 615
161 741...

output:

ok

result:

ok all right

Test #5:

score: 100
Accepted
time: 1ms
memory: 3700kb

input:

1000 3433
634 21
789 966
541 959
213 381
366 781
107 649
747 122
336 869
222 648
833 972
929 524
712 524
744 525
568 679
634 163
901 501
56 518
128 587
720 117
208 439
860 85
852 168
934 947
34 858
520 568
408 464
232 432
999 504
71 982
957 372
570 436
281 309
410 405
521 275
554 589
4 707
498 148
5...

output:

mark
2
797 631
631 33

input:

1000 3435
492 925
551 824
774 416
368 808
990 579
754 576
909 853
565 396
741 313
899 730
437 344
649 224
653 593
978 514
856 985
886 603
527 628
105 342
617 476
173 868
544 638
258 511
157 802
713 593
937 474
632 946
130 504
863 565
969 1000
775 157
671 107
19 431
992 91
767 42
41 538
960 922
664 9...

output:

ok

result:

ok all right

Test #6:

score: 100
Accepted
time: 1ms
memory: 3672kb

input:

1000 3057
985 223
432 967
405 822
845 650
893 646
599 718
754 710
333 73
392 355
895 496
200 562
816 36
457 953
9 623
889 662
482 590
249 29
689 694
185 990
285 690
12 323
611 560
903 722
476 86
105 666
441 193
695 640
36 617
840 42
80 527
977 539
606 150
384 585
784 648
919 360
157 532
568 98
995 8...

output:

mark
2
393 134
393 958

input:

1000 3059
843 48
868 745
13 673
100 290
294 93
506 107
14 469
598 921
842 25
722 509
514 396
921 841
590 43
246 790
42 26
97 364
960 372
193 518
712 927
748 815
310 433
761 98
95 877
987 626
333 585
636 154
414 771
63 271
485 551
874 366
440 279
11 644
94 361
993 310
22 995
416 653
191 934
386 218
1...

output:

ok

result:

ok all right

Test #7:

score: 100
Accepted
time: 1ms
memory: 3676kb

input:

1000 3085
484 405
841 443
661 315
392 941
355 558
523 394
773 929
673 840
5 707
255 610
744 58
301 794
505 33
668 533
787 945
747 810
803 115
340 900
791 909
596 418
129 491
460 698
156 233
664 502
231 465
795 486
829 102
608 212
253 344
419 557
100 421
321 793
207 302
544 479
33 916
736 129
6 156
9...

output:

mark
2
581 807
581 877

input:

1000 3087
330 953
222 248
604 945
734 474
596 365
616 239
659 399
29 349
242 611
567 601
160 515
570 432
942 86
572 24
893 944
764 498
77 708
840 36
110 453
194 617
145 156
711 586
48 508
716 321
432 569
452 701
64 766
783 561
277 327
608 575
963 994
643 710
951 787
223 900
940 780
19 454
715 86
687...

output:

ok

result:

ok all right

Test #8:

score: 100
Accepted
time: 1ms
memory: 3668kb

input:

1000 4289
963 66
959 467
930 83
419 699
731 948
702 583
699 245
636 721
859 551
377 251
90 889
286 843
908 47
864 979
223 948
269 684
85 579
162 376
414 255
602 884
65 132
842 907
488 360
553 898
649 249
253 711
675 632
629 446
708 413
819 511
512 113
189 76
242 464
828 261
440 737
643 389
75 907
49...

output:

mark
2
611 622
611 963

input:

1000 4291
332 749
188 54
898 992
302 493
586 861
246 779
154 311
838 229
268 316
209 227
784 338
987 999
510 121
91 866
365 8
994 105
972 83
352 824
924 603
496 756
320 32
453 521
433 884
937 526
18 740
686 723
784 591
510 698
317 920
838 799
447 186
474 789
845 588
71 110
569 257
492 670
793 957
52...

output:

ok

result:

ok all right

Test #9:

score: 100
Accepted
time: 2ms
memory: 3792kb

input:

1000 4763
544 167
316 76
78 841
699 1
645 745
827 262
568 545
595 81
924 561
108 253
397 626
142 967
613 397
723 633
711 259
363 249
5 436
165 88
178 463
734 529
195 324
135 41
1000 136
215 967
371 638
588 753
542 909
633 106
537 852
111 232
303 500
892 461
868 300
772 667
40 172
956 575
613 163
933...

output:

mark
3
240 148
148 214
240 571

input:

1000 4766
450 16
910 547
103 875
611 624
918 17
625 777
944 271
347 759
156 950
238 193
936 172
99 591
641 837
904 918
320 345
500 384
444 38
802 50
416 187
23 379
528 116
924 90
295 70
78 971
408 767
429 424
66 440
667 124
847 395
933 148
31 872
880 793
396 746
537 388
638 204
757 414
627 862
93 21...

output:

ok

result:

ok all right

Test #10:

score: 100
Accepted
time: 2ms
memory: 3732kb

input:

1000 4250
747 446
769 425
773 753
217 298
217 4
514 774
752 3
905 857
532 410
224 250
367 33
29 541
809 996
76 960
25 603
532 600
518 304
546 95
735 413
312 476
83 534
157 62
170 836
668 976
244 557
972 860
828 170
975 468
677 714
800 170
530 191
216 930
242 728
318 505
269 162
579 963
769 822
171 4...

output:

mark
4
384 170
384 747
384 385
170 385

input:

1000 4254
446 749
703 85
233 565
21 229
39 964
581 638
652 193
9 466
336 248
83 855
593 343
420 702
264 979
923 206
617 487
300 918
606 608
771 978
159 327
185 482
920 332
381 480
55 728
996 258
65 879
10 56
224 402
420 865
377 959
711 970
174 546
187 240
695 979
972 910
138 755
385 94
852 253
148 4...

output:

ok

result:

ok all right

Test #11:

score: 100
Accepted
time: 1ms
memory: 3720kb

input:

1000 3336
161 745
81 702
879 347
452 553
809 32
359 925
984 783
558 366
611 89
948 530
565 496
123 348
534 986
991 511
322 407
6 878
20 897
188 150
527 440
487 333
218 572
597 575
308 684
50 780
900 451
763 785
210 682
964 992
811 537
537 167
320 133
523 899
629 732
435 281
826 405
868 567
201 858
2...

output:

mark
4
299 359
299 947
299 519
359 519

input:

1000 3340
374 704
505 404
631 56
334 161
338 863
529 120
166 728
961 763
432 301
34 757
997 688
903 519
820 520
294 110
108 967
256 659
957 285
337 937
681 518
979 589
931 88
660 533
752 222
709 599
843 608
762 502
705 49
897 312
758 572
181 928
300 433
468 261
791 72
527 115
540 513
405 713
921 568...

output:

ok

result:

ok all right

Test #12:

score: 100
Accepted
time: 1ms
memory: 3660kb

input:

1000 3482
910 881
481 989
349 262
963 679
970 752
651 210
86 339
724 310
765 410
118 619
662 351
568 148
292 61
136 385
997 772
210 735
816 310
698 649
581 313
414 280
92 872
965 925
35 930
813 29
617 210
854 940
486 479
412 644
660 623
126 85
664 327
459 165
266 113
108 206
686 660
918 536
173 366
...

output:

mark
3
213 333
213 497
660 497

input:

1000 3485
216 73
26 845
663 101
178 269
799 60
89 532
700 367
473 513
884 605
22 144
559 961
298 109
642 71
577 568
56 984
165 402
768 581
832 455
487 770
360 666
431 549
110 733
682 544
172 624
602 240
324 630
262 218
812 625
631 840
402 148
49 543
843 613
862 539
97 615
931 586
391 411
780 376
634...

output:

ok

result:

ok all right

Test #13:

score: 100
Accepted
time: 1ms
memory: 3636kb

input:

1000 2141
358 723
692 581
753 295
864 391
984 462
525 271
508 897
739 537
124 933
577 499
863 37
279 622
361 605
454 951
527 837
1 224
641 404
479 220
931 126
182 719
464 451
805 452
529 800
292 689
17 320
728 790
967 41
412 752
276 535
643 636
611 56
802 414
861 603
857 722
1000 584
435 118
266 392...

output:

mark
4
588 790
588 442
588 609
790 609

input:

1000 2145
852 967
94 380
324 320
346 821
266 279
464 590
741 886
960 184
540 906
983 925
875 889
472 327
139 261
386 2
712 746
422 376
27 223
38 610
277 760
839 346
851 915
222 89
257 760
72 770
411 68
473 761
616 705
907 382
578 554
30 650
491 113
788 961
625 833
710 72
447 92
221 296
357 308
734 1...

output:

ok

result:

ok all right

Test #14:

score: 100
Accepted
time: 1ms
memory: 3708kb

input:

1000 2950
244 361
694 442
547 577
545 866
488 207
888 997
263 45
850 200
30 927
195 510
274 582
467 158
664 667
880 573
522 986
736 375
206 326
999 940
875 609
151 161
602 673
664 200
827 579
12 190
300 249
95 502
951 317
669 243
350 841
692 572
619 302
955 999
480 891
109 779
198 893
105 442
214 14...

output:

mark
4
572 91
572 159
572 58
91 58

input:

1000 2954
778 16
619 109
836 739
983 759
121 799
214 917
191 156
157 270
844 887
356 898
515 408
570 257
437 945
298 995
666 263
526 629
374 882
325 368
15 745
866 649
94 263
624 843
761 247
234 980
864 799
642 464
1000 854
447 249
692 329
978 590
975 887
938 677
554 841
841 279
574 406
317 325
226 ...

output:

ok

result:

ok all right

Test #15:

score: 100
Accepted
time: 1ms
memory: 3656kb

input:

1000 2725
336 461
575 6
961 482
496 574
134 336
671 452
172 957
633 89
909 334
222 155
90 660
201 950
436 671
726 683
487 356
536 389
107 844
403 732
550 608
607 54
718 438
960 144
710 278
398 747
152 501
86 385
34 251
309 822
773 321
329 213
897 948
356 401
290 329
278 591
683 454
122 523
729 436
4...

output:

mark
2
160 401
160 203

input:

1000 2727
826 863
858 930
36 361
502 490
496 849
962 420
832 558
835 576
697 1
876 932
227 6
945 202
506 996
166 759
29 389
658 44
210 471
707 306
136 23
16 349
489 533
171 268
777 555
725 846
99 756
489 624
969 790
960 742
900 848
381 128
478 216
516 535
919 446
598 868
442 380
316 683
182 247
338 ...

output:

ok

result:

ok all right

Test #16:

score: 100
Accepted
time: 1ms
memory: 3696kb

input:

1000 2812
357 725
462 948
927 875
21 284
52 197
457 876
744 315
990 255
660 522
51 971
392 275
736 77
131 216
581 438
495 271
965 111
376 89
824 363
628 13
33 585
836 144
791 404
916 588
668 243
960 335
505 368
744 264
332 893
65 320
205 81
929 44
135 224
306 351
938 505
70 927
825 634
161 492
434 1...

output:

mark
4
187 909
187 895
187 643
909 643

input:

1000 2816
74 677
844 527
861 647
463 470
85 601
795 562
994 900
667 806
176 302
59 167
728 220
473 186
175 360
191 878
573 696
99 654
787 602
514 445
381 18
713 84
47 207
435 703
391 80
306 898
146 670
678 389
498 620
989 678
880 11
452 899
961 353
23 284
528 805
995 296
450 591
766 214
89 674
863 3...

output:

ok

result:

ok all right

Test #17:

score: 100
Accepted
time: 1ms
memory: 3580kb

input:

1000 2616
518 38
164 144
301 140
711 11
36 636
443 779
107 901
467 922
759 675
229 276
467 880
975 435
382 460
238 663
639 927
74 953
777 326
689 944
152 237
501 789
795 889
95 376
390 401
279 64
520 803
273 292
333 454
202 485
860 54
872 641
101 951
236 726
464 847
992 656
576 565
739 176
562 327
2...

output:

mark
2
174 301
174 357

input:

1000 2618
108 714
738 496
607 947
188 659
174 323
19 131
993 727
80 39
709 435
725 965
373 753
15 893
47 164
624 991
520 125
325 28
443 759
471 771
646 149
179 733
792 834
655 267
976 251
191 720
622 590
382 193
660 10
179 744
654 605
696 555
680 531
491 81
304 138
348 463
732 587
149 760
535 154
12...

output:

ok

result:

ok all right

Test #18:

score: 100
Accepted
time: 2ms
memory: 3804kb

input:

1000 4792
659 787
666 143
711 116
742 958
604 434
293 882
175 28
557 753
106 808
527 599
942 249
843 109
174 76
429 255
415 489
463 540
878 235
688 87
629 402
927 418
704 734
886 463
702 992
570 370
492 865
795 889
638 594
887 203
732 896
610 492
960 422
44 255
442 448
426 697
862 351
318 277
783 22...

output:

mark
2
548 46
548 309

input:

1000 4794
67 673
773 302
166 474
531 318
764 641
362 384
715 329
7 689
673 447
344 407
871 2
890 237
85 412
105 640
19 490
372 887
117 843
844 107
557 691
9 754
846 585
489 357
862 113
447 256
269 331
608 873
766 144
478 300
179 691
269 630
196 387
212 563
506 344
849 98
363 115
764 901
851 242
378 ...

output:

ok

result:

ok all right

Test #19:

score: 100
Accepted
time: 2ms
memory: 3704kb

input:

1000 3724
513 194
958 159
936 285
493 34
668 957
824 152
450 421
92 170
416 782
546 100
698 433
299 741
261 975
661 408
4 927
789 856
52 784
541 618
99 780
527 957
618 74
440 321
839 496
360 484
71 21
149 302
25 505
240 587
584 736
490 934
817 867
682 287
882 528
985 852
201 46
254 112
862 582
379 3...

output:

mark
4
377 824
377 979
377 7
824 7

input:

1000 3728
513 337
740 712
204 457
941 367
782 149
81 463
561 469
262 177
657 441
93 304
22 514
503 797
97 323
239 189
651 717
975 795
480 974
32 340
508 920
243 442
968 216
462 558
6 120
140 90
17 857
938 109
414 946
815 284
858 805
635 82
13 349
966 380
301 421
45 922
81 998
472 334
561 603
136 115...

output:

ok

result:

ok all right

Test #20:

score: 100
Accepted
time: 1ms
memory: 3660kb

input:

1000 4188
106 174
116 750
197 421
387 311
48 148
296 628
755 929
804 267
341 16
263 676
486 178
334 256
639 453
183 206
497 528
911 457
854 258
104 922
931 576
725 214
300 460
149 847
754 657
670 983
525 366
475 667
680 376
676 126
929 766
437 821
646 717
578 151
885 981
394 105
264 225
429 390
502 ...

output:

mark
2
262 654
262 148

input:

1000 4190
124 365
552 47
351 939
847 527
642 165
824 76
729 292
753 349
395 209
95 116
435 788
603 88
789 99
380 280
678 489
501 778
312 223
956 738
970 8
690 279
444 808
931 659
379 193
69 71
503 907
695 105
480 823
540 235
387 580
774 301
679 166
131 3
840 645
388 479
300 525
463 271
436 54
840 62...

output:

ok

result:

ok all right

Test #21:

score: 100
Accepted
time: 1ms
memory: 3676kb

input:

1000 3236
622 762
548 197
457 126
655 978
275 215
472 112
762 998
649 242
890 339
337 1
169 283
365 486
584 324
988 887
406 500
62 591
512 839
76 251
479 635
485 217
961 204
934 8
621 40
374 227
1 403
644 72
758 370
436 494
174 341
770 80
421 125
151 211
405 389
514 637
808 815
131 762
647 518
804 7...

output:

mark
2
247 762
247 642

input:

1000 3238
797 806
528 282
234 469
167 268
556 607
239 305
483 502
99 972
407 882
818 543
193 108
65 459
748 25
666 750
583 26
540 761
766 286
705 449
816 418
582 483
759 788
599 682
14 978
269 7
751 712
547 186
542 367
779 742
95 843
872 716
394 330
984 993
392 431
575 835
860 208
963 181
894 112
25...

output:

ok

result:

ok all right

Test #22:

score: 100
Accepted
time: 1ms
memory: 3684kb

input:

1000 3299
693 455
906 758
704 271
639 392
910 445
984 43
821 447
3 475
929 500
879 29
243 657
602 744
974 96
879 79
225 9
868 993
115 636
701 248
995 83
781 441
995 320
766 534
432 827
65 632
873 392
231 943
502 170
856 584
368 665
391 797
734 568
538 613
539 984
505 285
965 253
446 107
605 681
216 ...

output:

mark
2
971 873
971 711

input:

1000 3301
938 126
77 81
387 652
828 78
627 911
571 512
227 294
290 451
194 844
983 93
861 751
702 825
17 440
808 338
650 955
877 825
839 816
230 369
855 628
368 694
798 292
821 85
735 576
558 209
938 759
581 936
727 987
879 50
120 177
735 72
197 500
997 461
109 774
961 613
364 867
607 691
735 333
69...

output:

ok

result:

ok all right

Test #23:

score: 100
Accepted
time: 1ms
memory: 3736kb

input:

1000 3482
45 265
363 58
385 372
365 256
659 227
700 636
954 356
708 312
24 144
103 367
797 394
779 615
596 57
546 439
622 318
344 724
27 792
286 475
286 469
581 321
191 79
457 80
357 577
559 587
63 234
982 665
838 402
931 320
724 796
645 275
254 812
283 710
75 269
991 914
888 557
214 416
316 465
197...

output:

mark
2
809 640
809 262

input:

1000 3484
186 288
136 751
656 288
737 914
968 582
937 936
522 693
394 658
489 87
279 20
107 17
793 493
378 263
170 32
281 638
982 141
126 680
272 1000
652 173
753 791
341 612
574 443
467 249
562 979
66 821
217 365
401 726
914 426
372 73
945 443
347 349
193 687
512 847
957 589
14 999
824 202
971 303
...

output:

ok

result:

ok all right

Test #24:

score: 100
Accepted
time: 1ms
memory: 3640kb

input:

1000 2311
97 580
515 270
609 837
243 284
715 189
980 486
853 479
235 7
253 300
207 583
282 612
456 80
486 497
503 404
74 701
64 172
583 794
570 655
901 25
14 568
485 218
621 50
253 26
433 784
533 215
134 695
278 364
879 983
690 952
198 197
725 421
95 464
927 999
104 71
752 252
553 356
187 952
38 859...

output:

mark
4
659 738
659 532
659 863
738 863

input:

1000 2315
909 560
462 818
981 771
15 103
529 324
279 712
26 148
462 251
582 104
651 267
822 19
307 540
457 611
803 437
286 419
116 226
871 106
146 645
653 181
592 6
90 391
434 719
250 771
288 172
662 46
674 878
366 359
919 307
467 180
335 825
185 725
394 326
993 310
263 654
431 282
690 810
231 979
6...

output:

ok

result:

ok all right

Test #25:

score: 100
Accepted
time: 1ms
memory: 3756kb

input:

1000 3896
460 688
426 709
610 203
65 902
606 471
519 789
275 370
86 879
786 822
601 948
312 884
115 372
100 491
967 601
104 750
411 830
571 626
201 132
175 126
678 756
610 712
267 770
853 475
406 479
485 471
479 953
156 968
785 918
61 114
348 147
659 495
709 716
248 599
984 20
728 726
859 759
681 10...

output:

mark
2
224 65
224 708

input:

1000 3898
623 306
528 861
202 230
848 367
894 883
586 654
186 242
481 622
557 336
976 697
72 256
656 120
944 98
811 313
487 815
220 245
824 715
192 114
469 766
923 995
854 109
626 780
978 86
573 185
756 614
774 505
171 251
982 757
589 1
660 994
297 365
264 1
573 756
999 317
957 511
7 294
171 168
163...

output:

ok

result:

ok all right

Test #26:

score: 100
Accepted
time: 1ms
memory: 3716kb

input:

1000 3891
701 522
952 922
356 456
249 391
128 593
9 524
661 405
984 460
440 470
639 699
782 189
537 74
184 399
888 710
975 120
475 924
602 492
200 577
978 478
611 758
886 262
404 313
44 559
170 35
749 501
848 364
6 401
723 549
110 186
281 506
52 379
84 255
755 196
824 136
985 230
523 682
826 823
560...

output:

mark
4
519 307
519 465
519 690
307 690

input:

1000 3895
748 28
553 576
102 518
288 871
57 481
437 418
262 316
19 9
383 67
366 447
227 155
90 806
2 184
139 16
159 265
592 770
306 482
434 37
999 673
943 668
612 140
317 925
513 927
346 69
887 48
263 22
237 565
868 729
720 21
65 861
712 71
998 690
298 474
761 655
996 952
205 106
963 324
762 270
657...

output:

ok

result:

ok all right

Test #27:

score: 100
Accepted
time: 1ms
memory: 3688kb

input:

1000 3265
924 167
3 999
663 583
890 496
619 193
641 842
720 966
650 470
975 552
309 965
968 739
223 474
41 188
279 73
663 940
438 173
385 280
113 178
896 270
15 956
456 196
291 323
392 622
180 781
469 950
685 672
633 436
562 153
407 796
209 630
750 874
190 614
400 306
560 935
235 777
500 785
378 332...

output:

mark
2
595 350
595 890

input:

1000 3267
840 599
212 282
32 540
346 924
492 761
461 613
202 190
578 347
60 604
356 659
250 766
67 64
705 714
970 679
810 974
326 692
886 165
241 378
402 479
597 130
185 663
281 849
79 963
498 66
934 748
598 927
479 778
749 19
820 245
695 140
928 719
283 845
673 485
84 733
238 556
310 648
291 916
23...

output:

ok

result:

ok all right

Test #28:

score: 100
Accepted
time: 1ms
memory: 3724kb

input:

1000 4070
7 484
881 280
807 812
167 913
190 699
784 415
747 45
424 328
414 997
461 463
499 437
173 675
71 525
195 736
428 593
560 602
235 557
91 265
580 422
522 212
50 326
784 938
787 256
963 883
896 902
228 953
997 406
724 753
202 646
93 118
187 777
841 254
573 651
198 821
89 615
124 443
622 120
58...

output:

mark
2
749 87
749 120

input:

1000 4072
370 139
188 415
372 95
744 962
945 841
145 964
33 138
250 276
410 234
106 834
702 46
594 47
934 969
972 967
951 669
868 713
722 81
619 522
598 759
255 796
687 279
905 940
196 220
560 223
502 324
452 610
701 635
848 373
642 594
151 808
503 787
470 624
503 465
907 931
178 480
943 867
528 628...

output:

ok

result:

ok all right

Test #29:

score: 100
Accepted
time: 1ms
memory: 3652kb

input:

1000 3135
679 441
832 386
95 753
472 452
550 725
334 216
547 305
556 805
250 217
546 555
109 827
884 984
297 80
660 821
807 403
301 250
489 275
256 342
841 435
290 873
771 188
76 424
261 377
793 458
945 925
593 432
527 275
971 222
646 49
284 713
3 37
313 181
314 122
257 969
765 89
759 537
273 857
38...

output:

mark
4
412 356
412 348
412 473
356 473

input:

1000 3139
511 853
45 340
73 629
95 658
390 311
991 905
729 986
997 950
900 546
12 155
194 81
132 597
617 356
29 643
981 480
672 688
951 744
442 698
611 196
281 138
291 489
900 271
899 865
897 1
780 290
155 535
152 169
171 326
717 212
168 647
696 974
723 712
445 107
250 367
493 789
48 503
867 939
740...

output:

ok

result:

ok all right

Test #30:

score: 100
Accepted
time: 1ms
memory: 3652kb

input:

1000 4200
448 409
48 552
204 139
701 128
189 761
181 385
118 653
471 26
968 195
976 473
19 907
837 969
942 346
489 372
710 765
648 339
527 477
990 60
125 276
56 249
110 276
864 906
796 39
940 90
91 628
37 667
25 886
550 150
657 438
553 447
682 141
77 926
647 290
139 792
167 696
965 705
898 787
644 6...

output:

mark
2
638 70
638 175

input:

1000 4202
425 12
558 128
193 900
581 707
346 705
383 362
96 750
834 176
612 832
362 795
752 33
768 811
494 190
377 945
937 684
951 781
654 844
3 163
703 820
734 494
148 698
942 474
87 167
796 196
911 559
528 861
899 477
804 725
278 897
814 298
205 258
701 558
276 1000
585 745
942 996
332 887
441 578...

output:

ok

result:

ok all right

Test #31:

score: 100
Accepted
time: 1ms
memory: 3648kb

input:

1000 2992
768 684
51 962
667 28
959 894
941 636
131 80
869 468
666 543
262 235
241 428
893 839
546 428
445 949
262 763
896 402
205 644
192 650
177 921
29 488
758 527
657 817
447 872
708 323
759 927
146 982
654 973
787 923
132 163
219 813
822 144
515 188
327 452
542 32
455 122
610 461
203 303
27 766
...

output:

mark
4
426 677
426 400
426 674
677 674

input:

1000 2996
996 157
621 73
334 921
68 275
290 787
302 569
333 448
95 493
714 541
181 924
71 226
348 446
168 510
543 124
26 350
328 27
996 592
629 165
688 604
172 685
149 89
254 895
153 783
797 982
103 780
288 94
12 699
534 211
361 673
954 41
546 472
20 656
560 471
533 406
292 346
739 92
325 408
78 590...

output:

ok

result:

ok all right

Test #32:

score: 100
Accepted
time: 1ms
memory: 3672kb

input:

1000 3891
9 226
167 799
23 992
910 468
750 904
219 238
571 266
968 429
700 878
3 169
108 842
736 273
789 322
446 694
869 533
491 744
526 730
190 941
610 146
853 939
824 574
399 326
116 328
687 960
68 460
222 735
64 875
462 627
955 990
5 890
393 852
651 134
683 374
99 609
854 927
357 84
81 455
963 69...

output:

mark
2
595 79
595 22

input:

1000 3893
308 141
644 809
737 856
914 255
437 780
618 567
807 332
445 492
976 625
39 566
680 623
20 497
168 999
916 543
625 278
462 566
592 934
961 52
673 374
107 910
454 950
946 395
572 793
987 284
197 48
909 432
731 281
832 104
21 320
969 470
622 17
231 143
932 896
836 536
861 839
636 424
364 621
...

output:

ok

result:

ok all right

Test #33:

score: 100
Accepted
time: 2ms
memory: 3692kb

input:

1000 4839
721 823
946 252
516 492
460 116
126 30
65 344
134 175
802 407
634 405
799 22
808 599
433 519
711 519
30 52
457 114
41 136
668 659
743 511
155 962
436 847
671 472
549 352
688 699
167 943
467 460
292 150
801 507
559 497
890 264
565 630
672 272
15 90
869 979
853 947
119 690
501 832
285 936
34...

output:

mark
2
529 748
529 858

input:

1000 4841
365 932
340 606
609 152
340 305
211 441
138 152
81 206
507 445
298 758
5 240
320 922
446 717
960 462
426 906
346 130
916 587
884 835
244 621
113 349
251 600
579 897
204 373
745 71
653 70
453 446
489 591
861 213
303 177
195 810
974 300
222 443
875 422
536 975
230 32
710 422
342 862
409 630
...

output:

ok

result:

ok all right

Test #34:

score: 100
Accepted
time: 1ms
memory: 3660kb

input:

1000 2034
672 408
42 15
81 165
720 365
17 795
12 752
996 718
504 262
723 214
405 139
860 837
659 586
873 356
313 426
115 550
620 942
287 815
539 518
574 531
642 428
696 628
532 548
164 371
382 434
397 223
880 826
667 805
851 587
387 528
731 649
88 252
738 790
871 539
763 587
116 818
394 292
267 380
...

output:

mark
4
795 911
795 58
795 540
911 540

input:

1000 2038
986 198
394 589
333 293
534 74
2 918
138 963
105 438
177 240
262 902
16 337
885 882
136 896
43 879
865 334
179 92
998 866
425 719
465 670
434 777
58 662
550 327
619 819
369 505
733 238
264 5
401 851
248 2
44 338
229 328
940 577
539 212
365 305
835 794
146 394
435 422
157 228
687 345
665 69...

output:

ok

result:

ok all right

Test #35:

score: 100
Accepted
time: 1ms
memory: 3552kb

input:

1000 2063
152 651
423 569
82 188
469 837
791 178
513 272
388 461
658 688
805 167
400 258
947 616
803 244
645 636
14 715
355 166
504 598
366 78
611 886
284 952
429 434
138 349
423 520
910 760
263 499
282 106
62 525
765 673
425 636
767 432
378 368
406 797
777 46
728 638
337 259
720 551
32 418
893 567
...

output:

mark
4
355 335
355 822
355 600
335 600

input:

1000 2067
351 633
641 268
623 693
218 571
780 330
736 318
217 755
265 515
626 425
969 274
287 557
413 999
388 737
165 242
379 396
465 252
97 366
483 10
472 749
388 767
10 770
262 244
916 556
430 740
672 919
61 308
121 38
525 578
541 677
53 796
171 995
783 948
657 54
215 765
828 257
8 923
698 262
367...

output:

ok

result:

ok all right

Test #36:

score: 100
Accepted
time: 1ms
memory: 3656kb

input:

1000 2015
735 560
841 818
908 373
452 621
415 440
682 740
879 685
769 787
78 247
709 376
529 131
838 689
352 699
233 54
420 43
675 580
893 682
570 960
886 186
627 685
824 527
285 801
381 190
545 638
803 864
673 545
675 471
539 857
97 929
72 835
176 54
336 134
674 134
214 557
720 131
480 947
842 993
...

output:

mark
4
120 902
120 609
120 194
902 194

input:

1000 2019
937 4
856 292
738 359
929 710
385 391
905 747
414 424
539 510
408 30
826 839
663 928
617 757
693 800
297 197
39 666
819 847
503 372
894 144
906 419
184 796
82 668
980 976
595 673
844 465
536 328
687 443
337 228
855 375
460 442
823 156
986 856
776 595
252 892
260 702
786 238
197 140
541 481...

output:

ok

result:

ok all right

Test #37:

score: 100
Accepted
time: 1ms
memory: 3552kb

input:

1000 2088
740 777
753 465
620 85
563 425
462 640
660 818
506 223
161 680
212 736
832 801
881 351
708 787
743 371
325 128
840 456
832 721
671 768
711 676
967 36
297 541
201 236
348 983
794 78
832 912
840 569
671 857
357 781
263 615
505 283
760 980
279 519
225 480
387 569
407 877
132 284
863 892
600 9...

output:

mark
2
837 256
837 241

input:

1000 2090
215 124
309 914
108 806
37 935
54 631
949 624
754 947
594 207
763 564
358 609
744 810
367 230
580 431
123 377
470 672
139 977
539 394
970 553
607 178
958 529
301 576
588 449
448 735
882 917
216 801
137 258
929 539
291 55
146 630
397 284
486 94
222 776
307 437
275 95
323 685
937 707
948 657...

output:

ok

result:

ok all right

Test #38:

score: 100
Accepted
time: 1ms
memory: 3612kb

input:

1000 2095
820 62
50 81
933 467
775 61
743 331
914 662
41 547
91 695
965 431
215 837
251 67
840 532
289 599
112 235
939 390
316 769
806 938
477 138
916 693
337 373
776 82
795 276
390 706
679 304
951 493
51 821
702 85
6 852
586 638
125 198
298 989
235 203
294 967
785 338
923 718
907 138
534 232
735 70...

output:

mark
4
740 213
740 462
740 231
213 231

input:

1000 2099
77 559
956 28
201 223
933 425
689 186
72 464
339 558
600 609
62 210
791 214
950 88
299 928
771 893
522 728
538 637
40 68
349 67
233 512
818 218
242 619
826 234
872 256
406 75
533 764
330 46
415 732
37 565
127 899
501 15
277 351
680 113
622 598
673 661
66 975
527 209
440 139
516 939
510 933...

output:

ok

result:

ok all right

Test #39:

score: 100
Accepted
time: 1ms
memory: 3556kb

input:

1000 2046
525 985
220 437
704 922
765 659
818 30
475 881
163 230
263 221
227 121
729 495
765 196
973 46
552 812
626 376
280 566
806 708
619 54
383 754
791 621
273 693
863 925
307 903
243 893
242 918
254 775
48 32
288 791
888 395
759 269
65 940
712 988
760 761
283 507
501 735
810 605
23 382
383 456
6...

output:

mark
2
35 46
35 481

input:

1000 2048
820 903
996 113
612 844
141 728
12 334
569 617
796 973
176 892
501 798
544 600
75 413
445 390
936 279
103 300
499 819
42 461
717 741
528 589
364 163
226 737
480 1
785 249
614 663
677 405
757 581
539 612
702 468
157 957
596 346
146 664
479 522
851 352
40 133
992 661
180 644
773 332
803 351
...

output:

ok

result:

ok all right

Test #40:

score: 100
Accepted
time: 1ms
memory: 3628kb

input:

1000 2079
455 816
522 714
688 571
300 880
12 370
69 398
73 893
591 907
473 588
920 617
238 10
50 790
341 784
959 70
934 661
532 840
383 637
105 196
150 597
735 508
981 607
347 560
539 399
836 727
990 327
676 537
835 787
905 427
113 617
919 480
382 892
345 961
513 321
516 394
105 669
306 175
313 803
...

output:

mark
2
614 46
614 346

input:

1000 2081
24 244
8 23
169 828
177 905
701 927
66 399
318 209
298 788
743 233
544 828
880 554
621 407
705 754
87 651
188 446
160 204
805 628
858 93
722 478
842 824
323 18
109 66
237 75
652 401
654 926
270 528
22 767
557 836
467 136
458 390
481 402
827 59
411 638
859 769
231 127
515 883
209 858
511 26...

output:

ok

result:

ok all right

Test #41:

score: 100
Accepted
time: 1ms
memory: 3552kb

input:

1000 2073
455 331
374 259
456 818
476 991
230 326
359 131
435 832
98 815
413 895
564 80
606 147
932 502
664 36
805 856
286 153
905 251
114 141
829 953
450 248
305 666
630 240
242 888
183 18
256 316
339 367
91 941
606 608
95 848
298 302
743 674
808 895
665 317
548 935
3 18
540 406
307 337
542 798
597...

output:

mark
2
372 909
372 856

input:

1000 2075
836 936
583 198
649 830
909 327
773 233
419 302
394 230
491 529
419 60
317 250
506 236
528 289
237 908
903 710
978 157
703 839
174 369
167 837
237 665
4 924
919 345
211 569
646 553
188 495
586 750
399 705
545 115
400 363
922 786
401 270
728 189
215 570
642 550
684 673
630 645
119 656
427 5...

output:

ok

result:

ok all right

Test #42:

score: 100
Accepted
time: 1ms
memory: 3612kb

input:

1000 2057
811 12
881 339
748 84
507 576
521 122
573 578
202 31
349 347
890 803
46 379
339 506
778 609
899 324
717 196
163 435
253 833
592 546
844 42
914 552
393 447
535 369
571 309
743 790
231 792
574 721
626 520
552 113
663 235
746 451
167 501
303 973
801 537
556 233
694 106
621 886
539 181
900 128...

output:

mark
4
749 70
749 594
749 707
70 707

input:

1000 2061
407 740
241 81
877 257
338 718
705 106
180 992
269 451
806 366
931 914
521 218
878 747
42 485
892 470
726 518
723 40
721 885
30 648
636 443
711 384
224 99
744 726
473 926
348 16
625 437
946 510
646 893
388 458
172 677
192 888
684 675
14 712
344 828
693 677
913 622
726 735
567 826
598 799
4...

output:

ok

result:

ok all right

Test #43:

score: 100
Accepted
time: 1ms
memory: 3672kb

input:

1000 2099
48 162
307 599
360 896
699 590
397 453
94 675
72 491
23 206
564 874
594 807
554 806
371 539
237 781
228 730
710 187
831 91
972 579
610 399
438 325
377 566
901 703
690 63
129 667
944 581
27 270
711 516
109 621
457 874
738 305
261 499
810 611
108 704
484 811
23 335
62 625
446 253
995 833
446...

output:

mark
2
949 849
949 412

input:

1000 2101
94 487
326 714
691 705
983 783
721 517
338 788
981 247
331 396
777 996
286 330
568 527
952 338
739 864
198 453
256 467
846 580
922 98
239 368
33 652
25 59
151 480
827 214
865 279
801 844
441 899
671 13
822 907
155 465
413 247
69 177
963 672
94 691
659 364
161 638
905 519
516 684
586 648
58...

output:

ok

result:

ok all right

Test #44:

score: 100
Accepted
time: 1ms
memory: 3592kb

input:

1000 2022
326 387
460 36
847 552
861 114
607 224
379 781
704 674
93 253
217 220
545 573
969 135
36 757
619 156
702 949
371 595
647 974
382 515
736 250
104 942
544 495
153 629
21 272
95 253
457 626
4 142
253 501
291 51
171 548
790 547
410 985
126 60
278 860
941 359
534 907
24 119
309 848
604 582
500 ...

output:

mark
4
751 565
751 534
751 293
565 293

input:

1000 2026
842 396
706 406
363 384
929 42
598 470
579 120
618 717
327 235
327 307
867 187
965 869
639 843
611 979
103 564
211 803
263 920
479 930
338 640
270 174
852 414
147 336
153 92
818 895
54 600
517 226
104 112
531 452
214 768
439 611
412 674
712 630
602 694
475 20
660 510
742 502
801 761
79 693...

output:

ok

result:

ok all right

Test #45:

score: 100
Accepted
time: 1ms
memory: 3604kb

input:

1000 2091
754 836
237 782
156 759
915 884
864 246
845 431
750 434
446 890
616 809
838 965
825 87
71 964
367 783
944 856
535 996
256 451
824 405
882 450
459 723
81 120
623 570
761 936
467 906
582 885
613 59
876 3
441 142
255 804
479 15
332 314
315 955
262 148
526 62
705 590
980 326
242 753
99 52
96 2...

output:

mark
2
63 3
63 496

input:

1000 2093
853 589
222 97
968 703
987 781
572 747
554 271
646 85
245 637
50 88
89 556
984 733
498 5
705 350
922 668
614 723
521 452
652 691
325 732
681 269
889 371
952 554
181 219
525 179
847 707
346 238
88 701
843 241
722 540
46 766
217 504
822 410
320 986
595 849
941 192
233 915
592 373
964 325
485...

output:

ok

result:

ok all right

Test #46:

score: 100
Accepted
time: 1ms
memory: 3612kb

input:

1000 2067
751 615
456 243
128 381
16 153
655 682
876 446
804 766
114 30
416 401
638 751
808 34
332 89
949 261
415 671
267 417
780 853
265 851
437 50
865 260
299 688
372 203
251 568
685 203
588 821
474 989
166 39
471 283
517 280
425 762
769 288
293 871
828 790
685 4
599 998
283 984
692 75
389 424
963...

output:

mark
4
929 817
929 448
929 864
817 864

input:

1000 2071
575 524
135 514
640 602
889 134
842 723
657 134
433 124
377 433
952 526
345 842
692 825
427 710
920 494
153 955
75 461
403 115
41 969
872 342
362 166
742 476
338 219
965 361
304 226
312 404
449 314
301 446
959 7
6 176
620 120
950 864
676 163
343 974
292 883
235 663
696 645
111 829
171 267
...

output:

ok

result:

ok all right

Test #47:

score: 100
Accepted
time: 1ms
memory: 3632kb

input:

1000 2090
168 774
668 762
275 193
842 877
526 360
243 974
432 61
340 659
648 802
513 813
515 763
160 208
261 913
143 670
140 121
125 331
749 317
539 591
40 805
760 859
672 919
226 860
193 518
963 539
264 613
689 746
532 277
319 753
806 797
456 625
540 26
92 52
386 130
644 299
575 219
441 14
999 91
6...

output:

mark
2
761 170
761 518

input:

1000 2092
165 269
213 897
786 904
159 965
180 99
17 194
97 964
535 362
516 346
229 312
8 111
271 584
253 534
872 803
369 373
788 355
824 429
341 534
640 565
18 454
321 328
688 722
561 906
46 836
622 809
662 698
458 287
798 117
564 459
432 715
558 699
25 449
923 910
734 675
697 180
751 688
54 672
80 ...

output:

ok

result:

ok all right

Test #48:

score: 100
Accepted
time: 1ms
memory: 3552kb

input:

1000 2051
600 485
340 731
851 477
146 577
162 144
950 758
26 390
724 806
101 422
166 979
847 178
889 472
262 78
480 930
787 663
886 481
648 35
970 8
211 590
24 748
285 903
122 448
869 930
39 244
154 461
940 791
106 742
550 34
937 699
984 623
341 761
610 313
707 427
28 66
564 222
162 948
916 346
832 ...

output:

mark
2
506 486
506 710

input:

1000 2053
522 929
673 274
842 802
473 93
775 334
533 872
33 529
639 457
835 213
915 891
955 432
746 869
376 889
346 778
209 218
448 107
182 112
524 454
665 2
875 77
253 203
612 248
569 786
319 529
873 768
925 294
764 977
611 756
829 896
813 448
229 811
464 682
534 187
591 328
298 413
820 175
496 44
...

output:

ok

result:

ok all right

Test #49:

score: 100
Accepted
time: 2ms
memory: 3740kb

input:

1000 4943
665 951
416 226
894 236
925 79
214 658
693 40
81 574
948 16
122 463
697 317
573 191
579 398
577 360
592 610
262 622
121 574
450 849
683 544
301 255
489 673
993 88
144 507
935 684
868 51
176 838
303 45
183 487
29 516
42 65
614 506
502 442
809 354
37 764
181 14
685 716
811 222
98 404
859 30
...

output:

mark
4
551 881
551 828
551 720
881 720

input:

1000 4947
323 926
692 34
5 176
148 902
630 47
556 790
667 315
881 233
700 220
333 993
489 178
663 56
343 434
980 898
88 11
616 800
245 320
961 917
717 362
374 350
976 837
468 948
752 880
968 336
194 822
753 131
730 994
945 324
349 480
522 772
739 471
554 265
552 231
864 318
694 749
481 666
841 864
4...

output:

ok

result:

ok all right

Test #50:

score: 100
Accepted
time: 2ms
memory: 3760kb

input:

1000 4935
279 349
259 876
584 954
998 336
909 44
870 30
316 993
621 131
88 104
521 719
282 696
91 443
836 68
72 366
189 730
603 976
509 731
904 724
944 887
852 728
41 497
916 567
476 768
408 131
217 582
361 996
258 807
862 232
27 735
256 259
685 477
96 452
382 937
769 127
408 73
612 222
486 568
553 ...

output:

mark
4
777 195
777 110
777 385
195 385

input:

1000 4939
775 924
615 125
196 591
85 569
263 234
107 571
785 138
384 625
832 871
934 710
930 324
830 50
51 147
129 898
250 340
1 297
453 830
830 28
725 443
525 124
540 344
739 988
826 105
659 627
906 446
481 870
944 332
65 291
844 695
574 253
556 75
676 875
612 981
934 396
335 672
876 878
591 762
75...

output:

ok

result:

ok all right

Test #51:

score: 100
Accepted
time: 2ms
memory: 3692kb

input:

1000 4920
662 360
530 505
408 304
925 426
78 432
144 445
429 409
522 333
778 425
409 275
855 890
395 825
916 729
484 378
411 84
698 695
148 940
672 839
8 65
197 552
281 888
141 647
288 295
683 265
294 531
267 276
835 561
649 883
793 350
536 12
417 146
550 24
883 25
649 433
533 45
920 793
748 220
968...

output:

mark
2
487 737
487 489

input:

1000 4922
209 213
18 603
905 851
778 426
425 921
858 161
108 243
916 864
546 257
701 346
974 9
157 430
992 941
214 75
838 558
831 127
700 201
894 631
226 399
245 58
41 968
363 429
381 154
56 658
936 311
307 78
58 967
712 36
337 97
221 275
258 804
456 712
17 362
877 159
309 816
483 902
334 771
997 41...

output:

ok

result:

ok all right

Test #52:

score: 100
Accepted
time: 2ms
memory: 3764kb

input:

1000 4922
576 94
768 660
840 799
143 55
739 141
98 340
717 651
378 315
779 399
725 701
477 1000
43 395
154 421
377 949
349 137
739 727
706 134
177 502
280 922
529 831
926 217
486 969
760 965
329 129
432 960
554 712
988 395
385 206
631 493
73 841
216 451
91 493
971 548
234 418
994 259
183 255
863 779...

output:

mark
4
424 270
424 323
424 95
270 95

input:

1000 4926
310 751
103 440
928 974
770 438
359 496
186 79
703 224
147 23
618 823
280 469
341 561
438 327
933 224
802 593
23 279
216 848
429 78
852 249
957 944
940 15
323 591
825 698
399 90
590 606
569 466
340 822
324 856
115 765
785 571
883 46
158 842
265 10
432 107
681 679
560 28
74 506
924 527
480 ...

output:

ok

result:

ok all right

Test #53:

score: 100
Accepted
time: 2ms
memory: 3812kb

input:

1000 4982
531 299
619 282
949 283
178 287
866 857
601 512
688 884
186 424
552 462
702 114
987 999
998 248
669 548
279 801
38 257
754 521
221 996
709 563
55 504
894 757
541 454
529 511
929 558
244 475
704 800
497 308
979 637
368 567
674 995
612 516
497 611
159 306
713 657
241 919
9 510
526 901
269 75...

output:

mark
4
423 663
423 374
423 192
663 192

input:

1000 4986
986 849
223 333
423 929
594 674
428 248
381 383
393 415
458 551
30 288
254 427
911 887
481 682
791 583
309 173
852 707
266 82
187 991
96 595
122 51
215 464
541 378
248 443
271 832
395 840
189 408
52 761
33 621
332 650
244 247
420 81
395 114
363 920
657 35
470 83
536 269
319 755
188 55
937 ...

output:

ok

result:

ok all right

Test #54:

score: 100
Accepted
time: 2ms
memory: 3804kb

input:

1000 4945
463 912
525 252
515 268
733 71
287 17
787 84
456 677
304 387
246 193
247 871
968 171
940 166
543 141
819 823
736 873
48 242
883 902
92 190
667 401
683 422
489 138
509 477
416 535
95 28
700 943
954 509
436 155
724 491
26 211
968 95
858 795
876 791
359 336
449 48
509 445
267 268
262 997
667 ...

output:

mark
2
883 349
883 748

input:

1000 4947
959 982
248 937
590 772
298 296
18 270
294 128
762 836
330 651
490 249
195 589
238 50
930 882
965 13
966 858
526 524
969 664
647 12
452 742
972 634
686 228
967 425
430 431
1 458
540 784
332 42
434 337
42 613
35 235
962 226
358 913
691 988
210 610
392 124
974 619
982 306
465 518
587 47
410 ...

output:

ok

result:

ok all right

Test #55:

score: 100
Accepted
time: 2ms
memory: 3812kb

input:

1000 4986
377 501
844 435
540 331
921 154
73 863
234 95
718 23
149 684
843 178
402 142
946 720
745 855
698 697
369 593
149 75
929 482
446 283
572 622
971 144
594 51
88 361
32 228
770 434
720 1
622 238
653 883
729 206
878 115
662 531
990 478
503 679
473 252
444 951
674 858
189 210
928 602
258 850
248...

output:

mark
4
64 749
64 512
64 408
749 408

input:

1000 4990
278 927
232 894
412 913
680 644
258 173
117 85
397 748
87 230
474 954
321 281
796 959
383 779
27 746
602 691
30 302
97 239
820 324
455 265
848 22
67 547
892 883
315 609
142 46
686 480
659 794
218 837
517 370
698 412
605 425
139 153
968 434
938 448
775 562
154 770
784 878
703 986
246 888
37...

output:

ok

result:

ok all right

Test #56:

score: 100
Accepted
time: 2ms
memory: 3736kb

input:

1000 4924
772 542
110 78
447 75
268 218
726 525
945 323
822 526
45 111
531 911
661 835
158 103
494 53
491 798
390 750
419 559
989 619
439 926
1 874
342 509
134 813
437 598
867 341
635 293
85 306
271 317
900 126
67 823
983 195
584 905
114 314
244 292
327 934
580 49
826 349
244 558
608 549
919 888
615...

output:

mark
4
689 232
689 289
689 488
232 488

input:

1000 4928
428 752
862 976
46 728
464 840
1000 603
914 736
33 390
282 262
871 75
765 992
825 84
333 48
588 97
128 266
969 685
423 448
715 998
256 409
700 681
332 166
952 786
769 587
366 476
520 306
34 451
935 578
507 38
682 808
746 273
219 849
602 290
614 890
909 131
298 127
132 924
83 528
947 646
80...

output:

ok

result:

ok all right

Test #57:

score: 100
Accepted
time: 2ms
memory: 3768kb

input:

1000 4912
212 766
263 308
403 279
622 320
187 112
61 680
164 594
574 1000
252 200
212 594
785 929
84 954
420 593
39 69
407 632
688 982
379 801
437 970
576 486
832 144
574 46
756 43
496 213
11 599
44 995
692 639
799 584
933 108
170 827
538 575
281 420
623 966
670 251
75 368
197 134
827 106
644 173
20...

output:

mark
2
386 512
386 143

input:

1000 4914
269 332
153 981
558 579
860 406
140 93
384 216
265 753
559 175
531 635
792 703
856 478
236 884
319 921
959 110
936 941
813 563
962 151
452 283
22 57
875 476
731 343
23 494
1000 981
985 330
976 886
246 8
523 400
260 52
990 453
457 772
149 46
866 834
437 337
876 883
61 923
830 671
880 125
85...

output:

ok

result:

ok all right

Test #58:

score: 100
Accepted
time: 2ms
memory: 3796kb

input:

1000 4928
198 990
188 734
13 624
435 922
966 728
802 830
794 288
853 945
878 247
672 49
481 203
565 526
546 11
121 500
228 731
677 126
802 759
569 676
520 931
157 467
28 393
442 866
43 820
119 648
219 541
281 321
781 147
490 565
143 279
939 464
910 150
896 363
473 790
597 69
29 82
719 230
163 847
55...

output:

mark
2
469 687
469 830

input:

1000 4930
424 813
456 491
863 129
708 520
483 394
537 684
728 627
110 348
202 487
298 486
602 204
567 541
24 651
355 632
133 515
218 988
11 628
699 570
967 747
249 682
627 504
831 935
157 944
913 608
472 67
575 579
128 648
757 470
761 853
649 881
104 277
308 669
72 717
939 71
417 106
294 908
83 979
...

output:

ok

result:

ok all right

Test #59:

score: 100
Accepted
time: 0ms
memory: 3740kb

input:

1000 4968
674 721
516 77
250 925
215 179
443 259
800 270
133 77
325 60
16 252
59 876
982 850
27 476
791 682
681 747
754 881
858 729
714 709
394 705
577 654
233 517
116 371
849 626
282 503
286 802
620 926
123 746
725 892
622 614
764 428
336 398
884 379
851 87
170 569
33 420
925 473
113 134
723 323
80...

output:

mark
2
668 674
668 250

input:

1000 4970
292 12
880 817
145 495
720 579
568 474
308 199
906 897
322 837
771 609
272 269
787 871
149 355
158 870
305 396
299 126
6 739
375 784
603 587
772 348
849 401
881 890
508 128
229 250
890 862
700 7
589 869
52 301
706 626
181 817
44 958
192 517
24 62
67 73
892 913
825 739
217 174
189 419
118 7...

output:

ok

result:

ok all right

Test #60:

score: 100
Accepted
time: 2ms
memory: 3696kb

input:

1000 4902
618 320
976 210
647 631
660 126
777 896
936 37
45 319
46 120
7 789
142 679
153 773
470 856
76 501
285 136
637 865
467 125
65 500
665 759
719 673
31 351
174 224
392 526
253 303
151 248
441 472
868 18
616 321
186 289
840 558
859 670
638 494
648 477
95 233
504 437
447 454
753 666
272 95
438 7...

output:

mark
3
701 108
108 887
701 541

input:

1000 4905
115 936
696 917
445 249
810 407
363 714
930 272
87 711
914 911
313 716
489 303
158 893
715 365
188 995
723 260
319 979
983 250
442 699
776 458
33 767
615 375
321 1000
132 345
139 133
667 730
660 639
248 46
412 768
283 652
686 816
218 798
758 341
319 801
622 585
812 933
176 460
272 969
521 ...

output:

ok

result:

ok all right

Test #61:

score: 100
Accepted
time: 2ms
memory: 3748kb

input:

1000 4911
305 164
534 928
660 488
699 709
689 671
565 419
389 366
431 417
453 377
679 410
540 899
896 178
884 805
299 770
766 675
204 470
809 243
202 261
734 200
479 749
496 205
374 30
147 400
550 530
23 587
613 453
312 339
934 230
763 386
66 697
374 860
564 549
598 9
477 202
691 12
22 797
212 256
8...

output:

mark
4
882 650
882 20
882 474
650 474

input:

1000 4915
995 873
888 10
102 597
651 910
251 878
412 817
463 550
613 167
724 639
774 910
140 379
991 791
30 849
819 456
413 53
509 954
541 892
344 384
386 370
348 476
499 913
447 706
449 98
748 679
512 872
829 770
407 48
315 566
513 304
699 278
573 901
547 41
531 196
134 82
784 565
263 355
322 72
52...

output:

ok

result:

ok all right

Test #62:

score: 100
Accepted
time: 2ms
memory: 3800kb

input:

1000 4956
355 807
159 102
221 33
180 365
983 308
162 794
391 179
53 371
643 311
933 846
440 950
914 806
650 54
256 885
363 261
520 397
1000 457
541 926
973 843
509 583
349 193
942 477
22 505
175 514
637 605
24 712
877 963
487 925
987 150
438 686
705 162
481 207
922 362
311 746
803 476
165 676
583 48...

output:

mark
2
830 801
830 692

input:

1000 4958
106 628
406 88
218 58
697 641
788 954
510 965
719 350
587 799
491 791
319 959
267 121
675 912
249 615
122 285
755 951
674 342
627 367
313 241
523 559
190 612
10 618
433 173
874 122
857 320
611 709
725 382
836 317
637 120
270 918
392 587
828 657
40 983
474 6
468 449
46 245
207 240
490 726
6...

output:

ok

result:

ok all right

Test #63:

score: 100
Accepted
time: 2ms
memory: 3724kb

input:

1000 4908
425 554
178 230
603 542
395 414
131 452
16 98
574 877
70 254
59 485
618 281
554 183
666 233
104 668
952 415
10 140
693 672
75 333
176 440
794 520
325 967
60 171
523 217
458 449
132 660
255 929
513 892
726 422
538 192
739 463
215 737
348 824
975 810
564 654
734 320
809 754
330 772
870 692
1...

output:

mark
2
75 854
75 29

input:

1000 4910
582 38
865 16
916 96
894 123
338 198
32 140
378 988
678 623
704 539
621 269
828 800
443 2
323 983
500 533
11 806
713 897
67 349
997 257
659 948
73 505
744 118
808 280
682 907
921 878
9 876
343 274
955 752
898 485
591 823
438 833
929 947
857 819
409 497
725 216
783 682
899 485
593 457
316 8...

output:

ok

result:

ok all right