QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#734796 | #9570. Binary Tree | MiniLong | AC ✓ | 313ms | 19524kb | C++20 | 5.4kb | 2024-11-11 15:09:06 | 2024-11-11 15:09:06 |
Judging History
answer
#include <bits/stdc++.h>
#define _rep(i, x, y) for(int i = x; i <= y; ++i)
#define _req(i, x, y) for(int i = x; i >= y; --i)
#define _rev(i, u) for(int i = head[u]; i; i = e[i].nxt)
#define pb push_back
#define fi first
#define se second
#define mst(f, i) memset(f, i, sizeof f)
using namespace std;
#ifdef ONLINE_JUDGE
#define debug(...) 0
#else
#define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#endif
typedef long long ll;
typedef pair<int, int> PII;
namespace fastio{
#ifdef ONLINE_JUDGE
char ibuf[1 << 20],*p1 = ibuf, *p2 = ibuf;
#define get() p1 == p2 && (p2 = (p1 = ibuf) + fread(ibuf, 1, 1 << 20, stdin), p1 == p2) ? EOF : *p1++
#else
#define get() getchar()
#endif
template<typename T> inline void read(T &t){
T x = 0, f = 1;
char c = getchar();
while(!isdigit(c)){
if(c == '-') f = -f;
c = getchar();
}
while(isdigit(c)) x = x * 10 + c - '0', c = getchar();
t = x * f;
}
template<typename T, typename ... Args> inline void read(T &t, Args&... args){
read(t);
read(args...);
}
template<typename T> void write(T t){
if(t < 0) putchar('-'), t = -t;
if(t >= 10) write(t / 10);
putchar(t % 10 + '0');
}
template<typename T, typename ... Args> void write(T t, Args... args){
write(t), putchar(' '), write(args...);
}
template<typename T> void writeln(T t){
write(t);
puts("");
}
template<typename T> void writes(T t){
write(t), putchar(' ');
}
#undef get
};
using namespace fastio;
#define multitest() int T; read(T); _rep(tCase, 1, T)
namespace Calculation{
const ll mod = 998244353;
ll ksm(ll p, ll h){ll base = p % mod, res = 1; while(h){if(h & 1ll) res = res * base % mod; base = base * base % mod, h >>= 1ll;} return res;}
void dec(ll &x, ll y){x = ((x - y) % mod + mod) % mod;}
void add(ll &x, ll y){x = (x + y) % mod;}
void mul(ll &x, ll y){x = x * y % mod;}
ll sub(ll x, ll y){return ((x - y) % mod + mod) % mod;}
ll pls(ll x, ll y){return ((x + y) % mod + mod) % mod;}
ll mult(ll x, ll y){return x * y % mod;}
}
using namespace Calculation;
const int N = 1e5 + 5;
int n, T;
vector<int> G[N];
int tot, rt, siz[N], maxn[N];
bool flag, vis[N];
void findrt(int u, int fa){
siz[u] = 1, maxn[u] = 0;
for(auto &v : G[u]){
if(v == fa || vis[v]) continue;
findrt(v, u), siz[u] += siz[v];
maxn[u] = max(maxn[u], siz[v]);
}
maxn[u] = max(maxn[u], tot - siz[u]);
if(maxn[u] < maxn[rt]) rt = u, flag = maxn[u] == tot / 2;
}
int ask(int x, int y){cout << "? " << x << ' ' << y << endl; int t; cin >> t; return t;}
void del(int u, int fa){
vis[u] = 1;
for(auto &v : G[u]) if(v != fa) del(v, u);
}
int main(){
cin >> T;
while(T--){
cin >> n;
vector<PII> e;
vector<int> p;
_rep(i, 1, n){
p.pb(i);
int x, y; cin >> x >> y;
if(x) G[i].pb(x), G[x].pb(i), e.pb({i, x});
if(y) G[i].pb(y), G[y].pb(i), e.pb({i, y});
}
int res = 0;
auto work = [&]() -> void{
vector<PII> cur;
for(auto &i : p) G[i].clear();
for(auto &[u, v] : e) if(!vis[u] && !vis[v]) G[u].pb(v), G[v].pb(u), cur.pb({u, v});
swap(e, cur);
vector<int> np;
for(auto &i : p) if(!vis[i]) np.pb(i);
swap(p, np);
};
tot = n;
while(tot > 1){
tot = p.size(), maxn[rt = 0] = 2e9, flag = 0, findrt(p[0], 0);
if(tot == 1) break;
// debug("rt:%d flag:%d tot:%d\n", rt, flag, tot);
if(flag && tot % 2 == 0){
int u = rt, v = 0;
for(auto &i : G[u]) if(siz[i] == tot / 2) v = i;
for(auto &i : G[u]) if(siz[i] > siz[u] && siz[u] == tot / 2) v = i;
int t = ask(u, v);
if(!t) swap(u, v);
del(u, v); work();
continue;
}
if(G[rt].size() == 1){
int u = rt, v = G[rt][0];
int t = ask(u, v);
p.clear(); if(t) p.pb(v); else p.pb(u);
break;
}
if(G[rt].size() == 2){
int u = G[rt][0], v = G[rt][1];
int t = ask(u, v);
if(t == 1){
p.clear(), p.pb(rt);
break;
}
if(t == 2) swap(u, v);
del(rt, u); work();
continue;
}
PII nxt[] = {{G[rt][0], 0}, {G[rt][1], 0}, {G[rt][2], 0}};
_rep(i, 0, 2){
int v = nxt[i].fi;
if(siz[v] > siz[rt]) nxt[i].se = tot - siz[rt];
else nxt[i].se = siz[v];
}
sort(nxt, nxt + 3, [](PII x, PII y){return x.se > y.se;});
int u = nxt[0].fi, v = nxt[1].fi;
int t = ask(u, v);
if(t == 0) del(rt, u);
if(t == 1) del(u, rt), del(v, rt);
if(t == 2) del(rt, v);
work();
}
res = p[0];
cout << "! " << res << endl;
_rep(i, 0, n) vis[i] = siz[i] = maxn[i] = 0, G[i].clear();
tot = rt = n = 0;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3628kb
input:
2 5 0 0 1 5 2 4 0 0 0 0 1 0 2 0 2 0 0 2
output:
? 3 1 ? 5 2 ! 5 ? 2 1 ! 1
result:
ok OK (2 test cases)
Test #2:
score: 0
Accepted
time: 85ms
memory: 6636kb
input:
5555 8 2 0 8 6 0 0 3 0 0 0 7 0 0 0 5 4 2 0 2 8 0 0 1 4 2 0 0 0 7 8 0 0 3 0 6 0 0 2 0 8 5 8 0 0 1 7 0 0 0 0 4 2 0 0 6 0 0 1 0 5 4 5 3 1 0 0 0 0 0 0 0 2 8 0 0 0 0 5 6 0 0 1 4 2 0 3 8 0 0 0 2 5 3 0 5 1 0 0 0 0 4 0 2 0 5 5 0 0 0 0 0 3 0 2 4 1 2 3 3 0 1 0 0 0 2 2 2 0 0 0 0 3 2 3 0 0 0 0 0 10 2 8 9 7 0 0 ...
output:
? 8 2 ? 6 2 ? 7 6 ! 6 ? 7 3 ? 8 5 ? 7 5 ! 7 ? 8 1 ? 4 2 ? 8 6 ! 8 ? 2 4 ? 3 2 ! 2 ? 5 6 ? 1 4 ! 4 ? 5 1 ? 3 1 ! 3 ? 4 1 ? 5 2 ! 2 ? 3 2 ! 2 ? 2 1 ! 2 ? 2 3 ! 2 ? 7 2 ? 1 9 ? 8 1 ! 8 ? 2 1 ! 1 ? 5 9 ? 2 9 ? 9 1 ! 1 ? 10 5 ? 7 1 ? 5 3 ! 5 ? 9 3 ? 1 7 ? 9 2 ! 9 ? 2 1 ! 2 ? 4 3 ? 1 7 ! 7 ? 4 9 ? 8 2 ? 8...
result:
ok OK (5555 test cases)
Test #3:
score: 0
Accepted
time: 50ms
memory: 3856kb
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 0 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 0 2 7 7 0 3 0 6 0 5 0 2 0 1 0 0 0 0 2 8 7 0 0 0 2 0 8 0 1 0 5 0 3 0 6 0 2 0 2 9 7 0 4 0 2 0 1 0 0 0 8 0 9 0 5 0 6 0 2 2 2 10 9 0 6 0 8 0 7 0 0 0 10 0 2 0 4 0 5 0 1 0 0 0 0 11 2 0 10 0 6 0 9 0 0 ...
output:
? 2 1 ! 1 ? 1 3 ! 3 ? 4 1 ? 4 3 ! 3 ? 4 3 ? 4 2 ! 4 ? 6 1 ? 6 3 ! 3 ? 2 6 ? 4 2 ! 2 ? 5 1 ? 3 7 ? 3 2 ! 2 ? 1 9 ? 6 8 ? 8 5 ! 5 ? 2 6 ? 7 8 ? 7 2 ! 7 ? 2 9 ? 8 4 ? 8 7 ! 8 ? 6 9 ? 10 3 ? 3 9 ! 9 ? 2 3 ? 8 12 ? 1 12 ! 1 ? 12 4 ? 11 8 ? 11 12 ! 13 ? 2 14 ? 15 8 ? 14 15 ! 9 ? 13 1 ? 2 16 ? 6 8 ? 8 1 ! ...
result:
ok OK (600 test cases)
Test #4:
score: 0
Accepted
time: 202ms
memory: 19524kb
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 ? 36882 98065 ? 17626 87676 ? 23816 44703 ? 44123 980 ? 42969 61196 ? 81398 51276 ? 9070 98746 ? 13903 50244 ? 25653 70641 ? 55522 518 ? 81177 31316 ? 18794 18355 ? 76564 25778 ? 50548 6946 ? 18355 50548 ! 50548 ? 5676 44110 ? 63067 58000 ? 22352 60270 ? 18353 43258 ? 78056 42695 ? 108...
result:
ok OK (2 test cases)
Test #5:
score: 0
Accepted
time: 114ms
memory: 12584kb
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:
? 1 3 ! 2 ? 5 1 ? 1 4 ! 4 ? 6 9 ? 7 3 ? 7 10 ! 7 ? 13 29 ? 17 18 ? 1 24 ? 1 17 ! 17 ? 37 8 ? 30 14 ? 55 56 ? 22 19 ? 19 56 ! 31 ? 36 89 ? 96 110 ? 20 79 ? 62 106 ? 82 86 ? 61 82 ! 82 ? 64 233 ? 148 51 ? 1 176 ? 126 78 ? 251 252 ? 200 224 ? 176 200 ! 176 ? 439 48 ? 144 457 ? 376 142 ? 193 427 ? 173 2...
result:
ok OK (15 test cases)
Test #6:
score: 0
Accepted
time: 117ms
memory: 11500kb
input:
16 2 2 0 0 0 2 4 4 0 3 0 1 0 0 0 0 2 8 5 0 0 0 4 0 8 0 2 0 3 0 6 0 1 0 0 2 0 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 0 0 0 2 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:
? 2 1 ! 1 ? 3 1 ? 3 2 ! 2 ? 4 8 ? 6 3 ? 4 3 ! 4 ? 11 3 ? 6 14 ? 7 8 ? 12 7 ! 7 ? 16 12 ? 29 21 ? 7 25 ? 26 5 ? 25 5 ! 25 ? 8 60 ? 41 15 ? 52 5 ? 64 18 ? 12 1 ? 12 5 ! 12 ? 80 57 ? 16 61 ? 42 18 ? 83 19 ? 60 91 ? 71 21 ? 91 21 ! 21 ? 106 90 ? 248 91 ? 233 57 ? 68 232 ? 255 62 ? 135 104 ? 177 251 ? 25...
result:
ok OK (16 test cases)
Test #7:
score: 0
Accepted
time: 111ms
memory: 12520kb
input:
15 2 2 0 0 0 2 6 5 0 1 0 6 0 2 0 3 0 0 0 0 1 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 0 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 0 2 0 2 62 24 0 22 0 18 0 17 0 49 0 53 0 3...
output:
? 2 1 ! 1 ? 5 1 ? 6 5 ! 3 ? 4 14 ? 12 6 ? 14 12 ! 14 ? 27 21 ? 2 13 ? 28 25 ? 27 28 ! 28 ? 33 60 ? 9 2 ? 36 34 ? 18 7 ? 7 60 ! 60 ? 94 70 ? 59 69 ? 4 21 ? 27 64 ? 40 41 ? 59 40 ! 40 ? 12 159 ? 47 235 ? 169 248 ? 1 84 ? 234 219 ? 77 175 ? 219 77 ! 219 ? 68 359 ? 190 319 ? 239 141 ? 50 73 ? 497 331 ? ...
result:
ok OK (15 test cases)
Test #8:
score: 0
Accepted
time: 51ms
memory: 5860kb
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 2 5 0 0 3 1 4 5 0 0 0 0 0 0 6 3 5 1 4 0 0 6 0 0 0 0 0 0 2 7 3 7 0 0 0 0 2 5 0 0 1 4 0 0 0 2 8 0 0 3 7 1 0 2 5 6 8 0 0 0 0 0 0 2 0 2 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:
? 2 1 ! 1 ? 3 2 ! 2 ? 4 1 ? 4 2 ! 2 ? 2 4 ? 2 1 ! 2 ? 2 1 ? 2 6 ! 6 ? 1 4 ? 3 7 ! 7 ? 4 2 ? 2 3 ? 7 2 ! 2 ? 1 3 ? 1 4 ? 8 5 ! 5 ? 1 4 ? 1 10 ? 9 6 ! 6 ? 2 6 ? 5 8 ? 4 3 ! 4 ? 1 11 ? 4 1 ? 10 4 ! 10 ? 13 7 ? 12 9 ? 6 5 ! 6 ? 12 14 ? 3 8 ? 1 9 ! 9 ? 8 14 ? 4 9 ? 1 3 ! 9 ? 10 15 ? 8 2 ? 5 4 ! 4 ? 2 3 ?...
result:
ok OK (600 test cases)
Test #9:
score: 0
Accepted
time: 164ms
memory: 11564kb
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 69076 ? 79924 11838 ? 18079 15463 ? 72017 29994 ? 80147 27856 ? 80763 26264 ? 39876 84186 ? 73287 34615 ? 43462 43070 ? 38721 85806 ? 84940 93114 ? 3443 79116 ? 49016 68555 ? 56289 87545 ? 32426 3887 ! 3887 ? 72481 78976 ? 96633 84675 ? 2124 81852 ? 13836 79494 ? 80643 24965 ? 38932 5573 ? 5...
result:
ok OK (2 test cases)
Test #10:
score: 0
Accepted
time: 96ms
memory: 8624kb
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: 89ms
memory: 8708kb
input:
16 2 0 0 1 0 2 4 4 2 0 0 0 0 3 0 0 2 8 3 0 0 0 0 0 0 0 1 2 0 0 6 4 5 7 0 1 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 1 ? 4 3 ! 3 ? 8 5 ? 6 4 ? 8 7 ! 7 ? 16 1 ? 6 16 ? 8 6 ? 13 8 ! 13 ? 19 32 ? 22 21 ? 28 20 ? 7 17 ! 17 ? 9 37 ? 9 58 ? 58 29 ? 17 29 ? 8 26 ? 29 3 ! 3 ? 28 92 ? 75 21 ? 10 7 ? 30 38 ? 41 44 ? 70 24 ! 24 ? 221 245 ? 218 245 ? 150 131 ? 242 88 ? 76 184 ? 61 183 ? 170 64 ! 170 ? 81 39 ? 36...
result:
ok OK (16 test cases)
Test #12:
score: 0
Accepted
time: 95ms
memory: 8668kb
input:
15 2 0 0 1 0 2 6 6 4 1 5 0 0 0 0 3 0 0 0 0 1 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 2 0 0 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 2 0 62 0 0 0 0 28 47 7 38 0 0 0 0 17 26...
output:
? 2 1 ! 1 ? 2 1 ? 2 3 ! 5 ? 14 12 ? 2 8 ? 1 7 ! 1 ? 28 17 ? 23 26 ? 18 6 ? 15 20 ! 15 ? 61 16 ? 36 43 ? 13 20 ? 40 29 ? 56 1 ! 1 ? 18 125 ? 17 123 ? 15 5 ? 10 84 ? 83 9 ? 65 101 ! 83 ? 253 241 ? 42 224 ? 81 61 ? 214 101 ? 49 56 ? 167 150 ? 100 136 ! 150 ? 69 284 ? 210 172 ? 19 233 ? 186 228 ? 352 26...
result:
ok OK (15 test cases)
Test #13:
score: 0
Accepted
time: 56ms
memory: 5920kb
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 0 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 0 0 8 2 7 0 0 6 0 0 0 8 3 0 0 4 5 0 0 2 2 0 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 ? 4 1 ? 4 3 ! 3 ? 1 4 ? 2 1 ! 2 ? 4 5 ? 4 3 ! 3 ? 4 7 ? 5 6 ! 5 ? 5 7 ? 7 1 ? 2 1 ! 2 ? 4 1 ? 4 3 ? 7 3 ! 3 ? 1 2 ? 7 2 ? 10 2 ! 10 ? 10 1 ? 10 11 ? 10 7 ! 10 ? 12 4 ? 8 4 ? 8 3 ! 3 ? 2 4 ? 12 2 ? 10 2 ! 2 ? 8 12 ? 12 14 ? 4 1 ! 4 ? 14 9 ? 1 14 ? 11 15 ! 11 ? 10 1 ? 3 15 ? 16 3 ?...
result:
ok OK (600 test cases)
Test #14:
score: 0
Accepted
time: 175ms
memory: 15724kb
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:
? 71188 96970 ? 87538 6820 ? 59029 32876 ? 46360 20365 ? 49372 9490 ? 17131 51870 ? 74496 96975 ? 50053 13426 ? 71402 87378 ? 76304 16502 ? 55861 25757 ? 8580 83268 ? 68021 15150 ? 45269 79266 ? 68021 45269 ? 35438 21860 ! 35438 ? 70265 50499 ? 17715 42167 ? 7700 96466 ? 26465 54010 ? 12268 78335 ? ...
result:
ok OK (2 test cases)
Test #15:
score: 0
Accepted
time: 104ms
memory: 11136kb
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 0 1 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 0 0 1 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 0 0 0 0 63 51 35 33 57 ...
output:
? 1 3 ! 2 ? 2 5 ? 1 7 ! 2 ? 15 4 ? 1 15 ? 2 11 ! 1 ? 14 1 ? 10 18 ? 29 10 ? 30 13 ! 30 ? 38 44 ? 42 1 ? 2 9 ? 34 2 ? 5 23 ! 23 ? 51 31 ? 96 62 ? 100 8 ? 52 89 ? 82 52 ? 70 57 ! 70 ? 124 122 ? 162 102 ? 84 231 ? 110 135 ? 147 223 ? 236 147 ? 201 80 ! 80 ? 322 266 ? 146 414 ? 72 335 ? 66 306 ? 89 76 ?...
result:
ok OK (15 test cases)
Test #16:
score: 0
Accepted
time: 104ms
memory: 11220kb
input:
16 2 0 0 1 0 2 4 0 0 1 0 4 2 0 0 0 2 8 0 0 0 0 0 0 3 5 8 6 2 0 1 4 0 0 0 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 0 0 0 2 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 ? 3 2 ? 4 3 ! 3 ? 5 4 ? 5 6 ? 6 2 ! 6 ? 8 2 ? 10 16 ? 10 8 ? 12 10 ! 10 ? 11 1 ? 7 12 ? 9 4 ? 7 4 ? 18 4 ! 18 ? 31 56 ? 19 11 ? 2 52 ? 58 17 ? 17 1 ? 44 17 ! 44 ? 24 38 ? 112 55 ? 61 93 ? 115 34 ? 85 11 ? 115 11 ? 87 11 ! 11 ? 60 133 ? 44 75 ? 72 14 ? 100 1 ? 39 227 ? 184 198 ? 184 75 ? 18...
result:
ok OK (16 test cases)
Test #17:
score: 0
Accepted
time: 93ms
memory: 10640kb
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 ? 2 6 ? 6 4 ! 6 ? 14 11 ? 11 13 ? 11 4 ! 11 ? 8 20 ? 9 1 ? 1 8 ? 29 1 ! 1 ? 42 59 ? 12 31 ? 19 40 ? 12 40 ? 47 40 ! 40 ? 40 17 ? 11 102 ? 27 88 ? 3 93 ? 93 27 ? 93 89 ! 89 ? 90 189 ? 158 221 ? 198 132 ? 32 240 ? 4 49 ? 49 240 ? 49 1 ! 49 ? 60 192 ? 29 303 ? 190 312 ? 241 495 ? 35 402 ? 71 ...
result:
ok OK (15 test cases)
Test #18:
score: 0
Accepted
time: 173ms
memory: 12276kb
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 ? 11494 10853 ? 11494 91694 ? 90037 73088 ? 90037 21572 ? 51091 91442 ? 7067 93596 ? 75096 14316 ? 75096 55875 ? 42793 41734 ? 59747 42793 ? 472 67072 ? 59747 64770 ! 92650 ? 80592 36933 ? 50906 68004 ? 73367 65219 ? 20489 33796 ? 74041 19704 ? 35779 74041 ? 35779 85560 ?...
result:
ok OK (2 test cases)
Test #19:
score: 0
Accepted
time: 313ms
memory: 5516kb
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