QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#731682#9570. Binary TreeTheZoneAC ✓289ms8108kbC++207.8kb2024-11-10 10:27:532024-11-10 10:28:01

Judging History

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

  • [2024-11-10 10:28:01]
  • 评测
  • 测评结果:AC
  • 用时:289ms
  • 内存:8108kb
  • [2024-11-10 10:27:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define dbg(x) cerr<<"In Line "<<__LINE__<<' '<<#x<<" = "<<(x)<<'\n'
bool no[100005],del[100005];
int cnt,ls[100005],rs[100005],siz[100005];
void dfs1(int u){
    siz[u]=1;
    if(ls[u]) dfs1(ls[u]),siz[u]+=siz[ls[u]];
    if(rs[u]) dfs1(rs[u]),siz[u]+=siz[rs[u]];
}
void dele(int u,int skip){
    del[u]=1,cnt--;
    if(ls[u]&&ls[u]^skip) dele(ls[u],skip);
    if(rs[u]&&rs[u]^skip) dele(rs[u],skip);
}
int main(){
    int t;cin>>t;
    while(t--){
        int n;cin>>n,cnt=n;
        for(int i=1;i<=n;i++) del[i]=0;
        for(int i=1;i<=n;i++) cin>>ls[i]>>rs[i];
        bool yes=0;
        while(cnt>1){
            for(int i=1;i<=n;i++) no[i]=0;
            for(int i=1;i<=n;i++) if(!del[i]) no[ls[i]]=no[rs[i]]=1;
            int rt,fa=0;
            for(int i=1;i<=n;i++) if(!del[i]&&!no[i]) rt=i;
            dfs1(rt);
            int now=rt;
            while(max(siz[ls[now]],siz[rs[now]])>siz[rt]>>1){
                fa=now;
                if(siz[ls[now]]>siz[rt]>>1) now=ls[now];else now=rs[now];
            }
            if(cnt==2){
                cout<<"? "<<now<<' '<<(ls[now]|rs[now])<<endl;
                int t;cin>>t;
                if(!t) cout<<"! "<<now<<endl;
                else cout<<"! "<<(ls[now]|rs[now])<<endl;
                yes=1;break;
            }
            else if(!fa){
                cout<<"? "<<ls[now]<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t) dele(now,ls[now]),ls[now]=0;
                else if(t==1){
                    cout<<"! "<<now<<endl,yes=1;break;
                }
                else if(t==2) dele(now,rs[now]),rs[now]=0;
            }
            else if(siz[ls[now]]>siz[rs[now]]){
                cout<<"? "<<fa<<' '<<ls[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(ls[now],0),ls[now]=0;
                }
                if(t==2) dele(rt,ls[now]);
            }
            else{
                cout<<"? "<<fa<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(rs[now],0),rs[now]=0;
                }
                if(t==2) dele(rt,rs[now]);
            }
        }
        if(!yes) for(int i=1;i<=n;i++) if(!del[i]) cout<<"! "<<i<<endl;
    }
}
/*#include<bits/stdc++.h>
using namespace std;
#define dbg(x) cerr<<"In Line "<<__LINE__<<' '<<#x<<" = "<<(x)<<'\n'
bool no[100005],del[100005];
int cnt,ls[100005],rs[100005],siz[100005];
void dfs1(int u){
    siz[u]=1;
    if(ls[u]) dfs1(ls[u]),siz[u]+=siz[ls[u]];
    if(rs[u]) dfs1(rs[u]),siz[u]+=siz[rs[u]];
}
void dele(int u,int skip){
    del[u]=1,cnt--;
    if(ls[u]&&ls[u]^skip) dele(ls[u],skip);
    if(rs[u]&&rs[u]^skip) dele(rs[u],skip);
}
int main(){
    int t;cin>>t;
    while(t--){
        int n;cin>>n,cnt=n;
        for(int i=1;i<=n;i++) del[i]=0;
        for(int i=1;i<=n;i++) cin>>ls[i]>>rs[i];
        bool yes=0;
        while(cnt>1){
            for(int i=1;i<=n;i++) no[i]=0;
            for(int i=1;i<=n;i++) if(!del[i]) no[ls[i]]=no[rs[i]]=1;
            int rt,fa=0;
            for(int i=1;i<=n;i++) if(!del[i]&&!no[i]) rt=i;
            dfs1(rt);
            int now=rt;
            while(max(siz[ls[now]],siz[rs[now]])>siz[rt]>>1){
                fa=now;
                if(siz[ls[now]]>siz[rt]>>1) now=ls[now];else now=rs[now];
            }
            if(cnt==2){
                cout<<"? "<<now<<' '<<(ls[now]|rs[now])<<endl;
                int t;cin>>t;
                if(!t) cout<<"! "<<now<<endl;
                else cout<<"! "<<(ls[now]|rs[now])<<endl;
                yes=1;break;
            }
            else if(!fa){
                cout<<"? "<<ls[now]<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t) dele(now,ls[now]),ls[now]=0;
                else if(t==1){
                    cout<<"! "<<now<<endl,yes=1;break;
                }
                else if(t==2) dele(now,rs[now]),rs[now]=0;
            }
            else if(siz[ls[now]]>siz[rs[now]]){
                cout<<"? "<<fa<<' '<<ls[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(ls[now],0),ls[now]=0;
                }
                if(t==2) dele(rt,ls[now]);
            }
            else{
                cout<<"? "<<fa<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(rs[now],0),rs[now]=0;
                }
                if(t==2) dele(rt,rs[now]);
            }
        }
        if(!yes) for(int i=1;i<=n;i++) if(!del[i]) cout<<"! "<<i<<endl;
    }
}#include<bits/stdc++.h>
using namespace std;
#define dbg(x) cerr<<"In Line "<<__LINE__<<' '<<#x<<" = "<<(x)<<'\n'
bool no[100005],del[100005];
int cnt,ls[100005],rs[100005],siz[100005];
void dfs1(int u){
    siz[u]=1;
    if(ls[u]) dfs1(ls[u]),siz[u]+=siz[ls[u]];
    if(rs[u]) dfs1(rs[u]),siz[u]+=siz[rs[u]];
}
void dele(int u,int skip){
    del[u]=1,cnt--;
    if(ls[u]&&ls[u]^skip) dele(ls[u],skip);
    if(rs[u]&&rs[u]^skip) dele(rs[u],skip);
}
int main(){
    int t;cin>>t;
    while(t--){
        int n;cin>>n,cnt=n;
        for(int i=1;i<=n;i++) del[i]=0;
        for(int i=1;i<=n;i++) cin>>ls[i]>>rs[i];
        bool yes=0;
        while(cnt>1){
            for(int i=1;i<=n;i++) no[i]=0;
            for(int i=1;i<=n;i++) if(!del[i]) no[ls[i]]=no[rs[i]]=1;
            int rt,fa=0;
            for(int i=1;i<=n;i++) if(!del[i]&&!no[i]) rt=i;
            dfs1(rt);
            int now=rt;
            while(max(siz[ls[now]],siz[rs[now]])>siz[rt]>>1){
                fa=now;
                if(siz[ls[now]]>siz[rt]>>1) now=ls[now];else now=rs[now];
            }
            if(cnt==2){
                cout<<"? "<<now<<' '<<(ls[now]|rs[now])<<endl;
                int t;cin>>t;
                if(!t) cout<<"! "<<now<<endl;
                else cout<<"! "<<(ls[now]|rs[now])<<endl;
                yes=1;break;
            }
            else if(!fa){
                cout<<"? "<<ls[now]<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t) dele(now,ls[now]),ls[now]=0;
                else if(t==1){
                    cout<<"! "<<now<<endl,yes=1;break;
                }
                else if(t==2) dele(now,rs[now]),rs[now]=0;
            }
            else if(siz[ls[now]]>siz[rs[now]]){
                cout<<"? "<<fa<<' '<<ls[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(ls[now],0),ls[now]=0;
                }
                if(t==2) dele(rt,ls[now]);
            }
            else{
                cout<<"? "<<fa<<' '<<rs[now]<<endl;
                int t;cin>>t;
                if(!t){
                    dele(now,0);
                    if(ls[fa]==now) ls[fa]=0;else rs[fa]=0;
                }
                if(t==1){
                    dele(rt,now),dele(rs[now],0),rs[now]=0;
                }
                if(t==2) dele(rt,rs[now]);
            }
        }
        if(!yes) for(int i=1;i<=n;i++) if(!del[i]) cout<<"! "<<i<<endl;
    }
}*/

詳細信息

Test #1:

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

input:

2
5
0 0
1 5
2 4
0 0
0 0
1
0
2
0 2
0 0
2

output:

? 3 5
? 2 1
! 2
? 1 2
! 2

result:

ok OK (2 test cases)

Test #2:

score: 0
Accepted
time: 73ms
memory: 3776kb

input:

5555
8
2 0
8 6
0 0
3 0
0 0
7 0
0 0
5 4
2
2
0
8
0 0
1 4
2 0
0 0
7 8
0 0
3 0
6 0
2
1
2
8
5 8
0 0
1 7
0 0
0 0
4 2
0 0
6 0
2
1
2
5
4 5
3 1
0 0
0 0
0 0
0
0
8
0 0
0 0
5 6
0 0
1 4
2 0
3 8
0 0
1
2
5
3 0
5 1
0 0
0 0
4 0
0
0
5
5 0
0 0
0 0
3 0
2 4
2
2
3
3 0
1 0
0 0
2
2
2 0
0 0
2
3
2 3
0 0
0 0
2
10
2 8
9 7
0 0
...

output:

? 1 8
? 5 4
? 4 3
! 4
? 5 3
? 3 4
? 2 1
! 1
? 3 8
? 8 2
? 6 4
! 4
? 2 5
? 2 3
! 2
? 7 5
? 3 2
! 2
? 5 1
? 5 4
! 5
? 1 4
? 4 3
! 3
? 2 3
! 3
? 1 2
! 2
? 2 3
! 3
? 1 7
? 7 3
? 7 5
! 7
? 1 2
! 1
? 5 9
? 2 1
? 2 6
! 2
? 3 10
? 8 2
? 10 8
! 8
? 9 3
? 9 7
? 2 1
! 1
? 2 1
! 1
? 4 3
? 7 1
! 1
? 4 5
? 4 8
? ...

result:

ok OK (5555 test cases)

Test #3:

score: 0
Accepted
time: 56ms
memory: 3576kb

input:

600
2
2 0
0 0
2
3
2 0
3 0
0 0
2
4
4 0
1 0
0 0
3 0
2
2
5
4 0
0 0
1 0
2 0
3 0
0
0
6
4 0
6 0
2 0
5 0
0 0
1 0
2
0
7
7 0
3 0
6 0
5 0
2 0
1 0
0 0
2
0
8
7 0
0 0
2 0
8 0
1 0
5 0
3 0
6 0
2
2
2
9
7 0
4 0
2 0
1 0
0 0
8 0
9 0
5 0
6 0
0
2
2
10
9 0
6 0
8 0
7 0
0 0
10 0
2 0
4 0
5 0
1 0
2
2
2
11
2 0
10 0
6 0
9 0
0 ...

output:

? 1 2
! 2
? 1 3
! 3
? 2 4
? 4 3
! 3
? 3 4
? 5 3
! 5
? 2 1
? 1 5
! 1
? 2 6
? 6 7
! 6
? 6 1
? 1 3
? 3 2
! 2
? 1 9
? 3 4
? 4 1
! 1
? 7 6
? 10 9
? 9 5
! 5
? 9 2
? 8 4
? 7 8
! 7
? 2 9
? 1 10
? 10 5
! 12
? 2 3
? 6 13
? 13 2
! 2
? 13 4
? 1 6
? 6 5
! 5
? 14 2
? 4 7
? 2 4
! 2
? 15 1
? 6 2
? 2 7
? 7 9
! 9
? 1...

result:

ok OK (600 test cases)

Test #4:

score: 0
Accepted
time: 131ms
memory: 8108kb

input:

2
99999
21832 0
77205 0
62668 0
58313 0
14640 0
76941 0
62678 0
8464 0
43145 0
26195 0
46140 0
83205 0
40047 0
81645 0
27077 0
92036 0
14236 0
3576 0
15430 0
75654 0
29049 0
62218 0
83318 0
1116 0
77861 0
9755 0
49236 0
70959 0
62295 0
33580 0
88208 0
55840 0
71061 0
24695 0
88831 0
1891 0
57285 0
9...

output:

? 70790 43991
? 98065 36882
? 44312 89400
? 59529 53895
? 65419 5852
? 14311 82041
? 47722 90087
? 45190 18514
? 97549 7166
? 74597 3775
? 21857 21630
? 75156 92329
? 25297 10672
? 29165 20974
? 75800 26030
? 26030 21857
! 21857
? 85780 5676
? 57748 39704
? 42043 58489
? 50842 30188
? 24131 36012
? ...

result:

ok OK (2 test cases)

Test #5:

score: 0
Accepted
time: 71ms
memory: 6508kb

input:

15
3
0 0
1 0
2 0
1
7
6 0
3 0
5 0
0 0
7 0
4 0
1 0
2
2
15
6 0
5 0
1 0
7 0
14 0
11 0
15 0
12 0
2 0
4 0
9 0
13 0
0 0
8 0
3 0
0
0
0
31
3 0
31 0
17 0
23 0
4 0
13 0
1 0
12 0
6 0
0 0
20 0
26 0
14 0
29 0
8 0
25 0
21 0
19 0
5 0
15 0
18 0
10 0
22 0
7 0
28 0
2 0
24 0
30 0
27 0
9 0
16 0
2
0
0
2
63
15 0
62 0
5 0
...

output:

? 3 1
! 2
? 5 1
? 1 4
! 4
? 6 9
? 7 3
? 10 7
! 10
? 13 29
? 17 18
? 24 1
? 29 24
! 24
? 37 8
? 14 30
? 38 32
? 51 13
? 13 37
! 16
? 89 36
? 6 71
? 101 116
? 64 57
? 14 59
? 116 14
! 14
? 233 64
? 68 246
? 145 28
? 40 61
? 190 230
? 69 248
? 61 69
! 61
? 48 439
? 468 437
? 322 37
? 316 202
? 57 164
?...

result:

ok OK (15 test cases)

Test #6:

score: 0
Accepted
time: 77ms
memory: 6644kb

input:

16
2
2 0
0 0
2
4
4 0
3 0
1 0
0 0
2
2
8
5 0
0 0
4 0
8 0
2 0
3 0
6 0
1 0
2
2
2
16
2 0
5 0
1 0
11 0
13 0
14 0
8 0
6 0
0 0
4 0
3 0
7 0
15 0
10 0
16 0
9 0
2
2
2
0
32
15 0
0 0
14 0
18 0
26 0
17 0
25 0
27 0
6 0
9 0
4 0
13 0
23 0
30 0
32 0
12 0
11 0
31 0
28 0
3 0
19 0
10 0
22 0
7 0
5 0
29 0
24 0
20 0
21 0
1...

output:

? 1 2
! 2
? 2 1
? 1 4
! 4
? 3 8
? 8 5
? 5 2
! 2
? 4 3
? 2 13
? 13 16
? 16 9
! 16
? 30 12
? 6 11
? 18 1
? 1 32
? 32 2
! 32
? 3 60
? 63 15
? 12 52
? 58 43
? 43 47
? 47 2
! 47
? 113 80
? 115 16
? 112 63
? 50 25
? 89 81
? 81 11
? 11 114
! 114
? 113 90
? 20 248
? 130 8
? 142 58
? 182 239
? 161 192
? 192 ...

result:

ok OK (16 test cases)

Test #7:

score: 0
Accepted
time: 72ms
memory: 6512kb

input:

15
2
2 0
0 0
2
6
5 0
1 0
6 0
2 0
3 0
0 0
2
2
14
12 0
0 0
11 0
5 0
7 0
1 0
8 0
10 0
14 0
13 0
6 0
9 0
2 0
4 0
2
0
1
30
10 0
29 0
23 0
28 0
9 0
14 0
2 0
30 0
19 0
0 0
15 0
1 0
22 0
8 0
18 0
27 0
7 0
24 0
26 0
3 0
20 0
25 0
6 0
17 0
4 0
12 0
21 0
16 0
13 0
5 0
2
0
0
2
62
24 0
22 0
18 0
17 0
49 0
53 0
3...

output:

? 1 2
! 2
? 2 5
? 5 6
! 6
? 9 4
? 7 10
? 4 7
! 5
? 16 21
? 8 5
? 3 6
? 21 3
! 3
? 10 60
? 9 2
? 34 36
? 7 18
? 18 34
! 44
? 84 70
? 37 90
? 56 58
? 116 29
? 80 31
? 31 115
! 31
? 100 12
? 71 118
? 146 62
? 28 148
? 70 231
? 163 152
? 152 70
! 70
? 209 359
? 137 139
? 71 459
? 474 289
? 156 36
? 361 ...

result:

ok OK (15 test cases)

Test #8:

score: 0
Accepted
time: 44ms
memory: 3620kb

input:

600
2
2 0
0 0
2
3
3 2
0 0
0 0
2
4
3 0
0 0
0 0
1 2
0
0
5
0 0
3 1
4 5
0 0
0 0
1
0
6
3 5
1 4
0 0
6 0
0 0
0 0
0
0
7
3 7
0 0
0 0
2 5
0 0
1 4
0 0
0
1
8
0 0
3 7
1 0
2 5
6 8
0 0
0 0
0 0
0
0
0
9
9 8
0 0
7 2
0 0
0 0
0 0
0 0
4 5
3 6
0
1
2
10
3 6
8 0
4 2
5 7
0 0
10 9
0 0
0 0
0 0
0 0
0
1
2
11
0 0
4 9
5 8
6 3
0 0...

output:

? 1 2
! 2
? 3 2
! 2
? 1 2
? 1 3
! 1
? 2 5
? 3 4
! 3
? 1 4
? 3 5
! 3
? 1 4
? 3 7
! 1
? 2 5
? 3 7
? 3 1
! 3
? 1 3
? 1 5
? 8 4
! 4
? 1 4
? 1 9
? 6 10
! 10
? 2 3
? 2 11
? 9 10
! 10
? 1 5
? 1 4
? 4 10
! 10
? 13 8
? 13 9
? 6 5
! 9
? 12 11
? 5 10
? 4 13
! 13
? 8 14
? 2 5
? 11 6
! 6
? 15 7
? 9 11
? 14 6
? 1...

result:

ok OK (600 test cases)

Test #9:

score: 0
Accepted
time: 115ms
memory: 4964kb

input:

2
99999
0 0
7999 97267
75750 37659
0 0
0 0
33761 92098
90707 18838
13602 27569
0 0
0 0
0 0
0 0
0 0
0 0
0 0
14586 86647
1519 23132
0 0
3430 14643
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
47066 36968
95308 38482
34100 25297
0 0
0 0
0 0
0 0
88902 58991
0 0
0 0
66315 68538
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0...

output:

? 50379 22163
? 79924 11838
? 79924 15463
? 4652 88632
? 18079 40612
? 41708 24579
? 63141 88436
? 54568 23667
? 96127 34342
? 59253 87905
? 71622 43885
? 89669 29947
? 58321 97575
? 99570 77326
? 73462 15443
? 61865 43088
! 43088
? 72481 42261
? 96633 84675
? 96633 81852
? 93383 79494
? 2124 37561
...

result:

ok OK (2 test cases)

Test #10:

score: 0
Accepted
time: 71ms
memory: 4516kb

input:

15
3
3 2
0 0
0 0
1
7
0 0
3 6
0 0
7 2
0 0
0 0
5 1
2
2
15
14 12
0 0
0 0
0 0
8 6
10 11
0 0
3 7
2 4
0 0
0 0
0 0
15 5
0 0
9 1
0
0
0
31
4 9
0 0
29 17
0 0
0 0
15 31
5 21
18 14
0 0
0 0
0 0
16 2
12 7
0 0
23 10
0 0
30 13
0 0
24 27
11 26
0 0
0 0
0 0
0 0
19 20
0 0
0 0
0 0
6 25
8 1
28 22
2
0
0
2
63
53 48
40 57
0...

output:

? 3 2
! 1
? 7 2
? 3 6
! 6
? 15 5
? 9 1
? 2 4
! 2
? 29 17
? 30 13
? 8 1
? 18 14
! 14
? 1 2
? 53 48
? 63 19
? 30 56
? 55 59
! 56
? 20 115
? 71 68
? 67 3
? 18 16
? 123 55
? 117 104
! 104
? 70 140
? 78 250
? 223 4
? 220 204
? 67 144
? 75 15
? 242 199
! 242
? 60 121
? 414 74
? 99 184
? 301 403
? 425 477
...

result:

ok OK (15 test cases)

Test #11:

score: 0
Accepted
time: 75ms
memory: 4580kb

input:

16
2
0 0
1 0
2
4
4 2
0 0
0 0
3 0
0
0
8
3 0
0 0
0 0
0 0
1 2
0 0
6 4
5 7
0
0
2
16
16 15
0 0
0 0
0 0
7 11
8 10
0 0
13 0
0 0
0 0
0 0
3 9
0 0
4 2
5 14
6 12
0
0
0
0
32
0 0
22 21
25 18
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
5 10
30 0
1 24
12 31
0 0
0 0
16 8
3 15
11 26
23 14
28 20
6 9
0 0
13 27
0 0
0 0
7 17
0 0
0 ...

output:

? 2 1
! 1
? 4 2
? 4 3
! 4
? 5 7
? 1 2
? 1 3
! 3
? 16 15
? 6 12
? 8 10
? 8 13
! 8
? 19 2
? 3 15
? 25 18
? 13 27
? 13 30
! 30
? 9 14
? 58 24
? 29 32
? 17 3
? 15 39
? 15 57
! 15
? 92 13
? 83 73
? 57 115
? 62 54
? 56 55
? 79 88
? 79 69
! 79
? 245 3
? 218 134
? 223 108
? 47 234
? 119 200
? 90 69
? 135 20...

result:

ok OK (16 test cases)

Test #12:

score: 0
Accepted
time: 73ms
memory: 4524kb

input:

15
2
0 0
1 0
2
6
6 4
1 5
0 0
0 0
3 0
0 0
0
2
14
0 0
1 7
5 11
13 9
0 0
2 8
0 0
10 0
0 0
0 0
0 0
14 6
0 0
3 4
0
0
1
30
7 0
5 13
0 0
0 0
14 30
15 20
0 0
0 0
3 19
0 0
0 0
11 21
9 1
16 24
0 0
0 0
28 2
8 10
0 0
0 0
0 0
0 0
18 6
0 0
4 29
12 25
0 0
23 26
0 0
27 22
0
0
0
2
62
0 0
0 0
28 47
7 38
0 0
0 0
17 26...

output:

? 2 1
! 1
? 1 5
? 6 4
! 4
? 14 6
? 3 4
? 5 11
! 3
? 28 2
? 23 26
? 18 6
? 8 10
! 10
? 16 57
? 36 43
? 12 4
? 22 15
? 11 53
! 15
? 18 44
? 53 93
? 51 69
? 28 20
? 7 27
? 39 94
! 39
? 253 196
? 42 224
? 178 31
? 58 6
? 14 64
? 57 160
? 148 207
! 207
? 284 376
? 30 32
? 22 406
? 231 379
? 464 168
? 403...

result:

ok OK (15 test cases)

Test #13:

score: 0
Accepted
time: 65ms
memory: 3588kb

input:

600
2
0 0
1 0
2
3
0 0
1 3
0 0
2
4
2 4
0 0
0 0
3 0
2
2
5
2 5
0 0
0 0
0 0
4 3
0
0
6
6 4
0 0
0 0
3 0
2 1
0 0
0
2
7
0 0
0 0
2 4
5 6
0 0
0 0
1 3
2
2
8
2 7
0 0
6 0
0 0
8 3
0 0
4 5
0 0
2
2
2
9
5 2
0 0
7 4
6 8
0 0
0 0
0 0
9 1
0 0
0
2
2
10
3 5
10 7
0 0
0 0
6 2
0 0
4 0
9 1
0 0
0 0
2
2
0
11
9 6
4 1
0 0
0 0
11 ...

output:

? 2 1
! 1
? 1 3
! 3
? 2 4
? 4 3
! 3
? 1 3
? 1 2
! 1
? 5 4
? 5 2
! 2
? 7 4
? 5 6
! 6
? 1 5
? 8 3
? 3 6
! 6
? 4 1
? 7 4
? 4 6
! 6
? 1 2
? 10 7
? 7 4
! 7
? 1 10
? 10 8
? 10 7
! 7
? 7 4
? 4 8
? 4 5
! 5
? 2 4
? 12 2
? 2 10
! 10
? 12 8
? 8 10
? 3 11
! 3
? 9 14
? 14 1
? 11 15
! 15
? 6 1
? 1 3
? 11 16
? 16 ...

result:

ok OK (600 test cases)

Test #14:

score: 0
Accepted
time: 124ms
memory: 6548kb

input:

2
99999
96748 53986
34197 77552
29863 63559
79099 26449
45078 1051
0 0
27416 4135
0 0
38606 81189
93892 68603
48776 185
79602 18311
51243 83678
89044 40032
28883 35663
0 0
0 0
21603 15821
0 0
51448 75971
70275 8326
0 0
0 0
57049 72937
3297 94939
0 0
59258 39159
3205 34675
54876 24769
0 0
0 0
0 0
851...

output:

? 96970 71188
? 6820 87538
? 32876 59029
? 20365 46360
? 49372 9490
? 93805 51870
? 96975 74496
? 87346 50053
? 22841 44535
? 62765 6517
? 93268 35799
? 91247 66059
? 4653 3600
? 73850 33733
? 33733 22841
? 22841 60354
! 22841
? 6749 50499
? 37781 42167
? 36486 96466
? 33496 37783
? 28303 48920
? 95...

result:

ok OK (2 test cases)

Test #15:

score: 0
Accepted
time: 76ms
memory: 5556kb

input:

15
3
0 0
1 3
0 0
1
7
0 0
1 7
0 0
6 2
3 4
0 0
0 0
2
2
15
2 11
0 0
13 1
12 14
0 0
0 0
5 8
10 4
0 0
0 0
0 0
0 0
0 0
6 15
9 3
2
2
0
31
24 22
0 0
31 6
0 0
4 3
11 19
0 0
0 0
28 21
25 20
0 0
0 0
0 0
2 16
0 0
27 18
8 10
15 17
26 1
23 29
7 5
12 14
0 0
0 0
0 0
0 0
0 0
0 0
30 13
0 0
0 0
2
2
2
1
63
51 35
33 57
...

output:

? 1 3
! 2
? 5 2
? 1 7
! 7
? 4 15
? 15 1
? 2 11
! 2
? 1 14
? 18 10
? 10 29
? 30 13
! 29
? 44 38
? 1 42
? 9 2
? 2 34
? 5 23
! 23
? 31 51
? 62 96
? 8 100
? 89 52
? 52 82
? 70 57
! 57
? 122 124
? 102 162
? 231 84
? 135 110
? 223 147
? 147 236
? 201 80
! 236
? 266 322
? 414 146
? 335 72
? 306 66
? 76 89
...

result:

ok OK (15 test cases)

Test #16:

score: 0
Accepted
time: 64ms
memory: 5532kb

input:

16
2
0 0
1 0
2
4
0 0
1 0
4 2
0 0
2
2
8
0 0
0 0
0 0
3 5
8 6
2 0
1 4
0 0
2
2
0
16
0 0
7 8
0 0
1 2
0 0
0 0
0 0
5 10
3 0
12 16
14 13
0 0
15 4
0 0
0 0
6 9
2
2
2
0
32
26 17
5 31
28 25
18 7
0 0
0 0
14 12
15 0
22 4
0 0
29 1
19 2
0 0
0 0
0 0
6 8
10 21
0 0
0 0
0 0
13 3
0 0
0 0
0 0
32 30
0 0
20 9
0 0
0 0
23 16...

output:

? 2 1
! 1
? 4 2
? 2 1
! 1
? 7 5
? 8 6
? 6 2
! 6
? 4 8
? 8 16
? 6 9
? 9 3
! 9
? 31 1
? 21 25
? 25 16
? 6 8
? 8 15
! 8
? 43 56
? 18 11
? 47 52
? 52 17
? 44 1
? 1 38
! 1
? 37 24
? 56 55
? 25 61
? 10 115
? 115 85
? 27 120
? 120 21
! 21
? 170 133
? 184 44
? 58 43
? 235 206
? 19 27
? 27 221
? 181 168
? 16...

result:

ok OK (16 test cases)

Test #17:

score: 0
Accepted
time: 78ms
memory: 5464kb

input:

15
2
0 0
1 0
2
6
0 0
5 0
1 2
0 0
0 0
4 3
2
0
14
8 14
0 0
0 0
0 0
0 0
12 11
10 0
0 0
2 7
0 0
4 1
0 0
3 6
5 9
2
0
0
30
29 21
6 9
0 0
0 0
0 0
0 0
0 0
19 17
24 30
0 0
14 26
23 0
0 0
0 0
25 18
0 0
7 20
16 12
0 0
13 11
28 8
10 15
0 0
0 0
0 0
3 22
5 2
0 0
0 0
4 1
0
2
0
2
62
0 0
34 33
0 0
0 0
0 0
37 45
0 0
...

output:

? 2 1
! 1
? 6 2
? 2 5
! 2
? 11 14
? 14 7
? 14 5
! 14
? 8 20
? 9 1
? 1 8
? 1 29
! 29
? 59 42
? 2 15
? 44 51
? 51 2
? 2 34
! 34
? 40 17
? 11 102
? 88 27
? 72 111
? 111 88
? 111 10
! 10
? 189 90
? 65 224
? 229 10
? 57 98
? 16 15
? 15 67
? 15 13
! 15
? 60 192
? 29 303
? 312 190
? 118 457
? 382 143
? 275...

result:

ok OK (15 test cases)

Test #18:

score: 0
Accepted
time: 123ms
memory: 4988kb

input:

2
99999
0 0
88119 0
72740 0
6901 19702
0 0
10620 84889
0 0
9552 63972
45156 60768
9152 72379
0 0
59875 97207
48193 0
17282 54916
65927 27713
80083 15817
36966 75381
0 0
77279 56298
0 0
11554 61779
0 0
89976 0
65282 42151
95206 62876
97329 86772
0 0
0 0
0 0
11820 0
0 0
20432 0
50520 39907
0 0
46948 1...

output:

? 52174 35226
? 26122 16093
? 61873 11494
? 11494 91694
? 90037 73088
? 90037 21572
? 91442 51091
? 7067 93596
? 14316 75096
? 75096 55875
? 41734 42793
? 42793 59747
? 92650 67072
? 64770 41901
? 41901 70941
! 41901
? 36933 80592
? 80592 50906
? 73367 65219
? 20489 33796
? 19704 74041
? 74041 35779...

result:

ok OK (2 test cases)

Test #19:

score: 0
Accepted
time: 289ms
memory: 3624kb

input:

100000
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
2
2
0 0
0 1
2
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
0
2
0 0
0 1
2
2
0 0
0 1
0
2
0 0...

output:

? 2 1
! 1
? 2 1
! 2
? 2 1
! 1
? 2 1
! 2
? 2 1
! 1
? 2 1
! 2
? 2 1
! 2
? 2 1
! 2
? 2 1
! 2
? 2 1
! 1
? 2 1
! 2
? 2 1
! 2
? 2 1
! 1
? 2 1
! 1
? 2 1
! 2
? 2 1
! 1
? 2 1
! 1
? 2 1
! 1
? 2 1
! 1
? 2 1
! 2
? 2 1
! 2
? 2 1
! 2
? 2 1
! 1
? 2 1
! 2
? 2 1
! 2
? 2 1
! 1
? 2 1
! 1
? 2 1
! 1
? 2 1
! 1
? 2 1
! 1
...

result:

ok OK (100000 test cases)

Extra Test:

score: 0
Extra Test Passed