QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#748188 | #9570. Binary Tree | PlentyOfPenalty# | AC ✓ | 240ms | 19004kb | C++20 | 5.2kb | 2024-11-14 19:36:14 | 2024-11-14 19:36:15 |
Judging History
answer
#include <bits/stdc++.h>
#define all(x) begin(x), end(x)
#define sz(x) ((int)(x).size())
#ifdef memset0
#define log(...) fprintf(stderr, __VA_ARGS__)
#else
#define endl '\n'
#define log(...) (void(0))
#endif
using namespace std;
using ll = long long;
using lf = long double;
using ull = unsigned long long;
const int N = 1e5 + 9;
int T, n, fa[N], dep[N], bo;
vector<int> g[N];
void dfs(int u) {
for (int v : g[u])
if (v != fa[u]) {
fa[v] = u;
dep[v] = dep[u] + 1;
dfs(v);
}
}
int get_dis(int u, int v) {
int dis = 0;
while (u != v) {
if (dep[u] > dep[v]) swap(u, v);
++dis, v = fa[v];
}
return dis;
}
int _s = -1;
int ask(int u, int v) {
#ifdef memset0
int s1 = get_dis(u, _s);
int s2 = get_dis(v, _s);
if (s1 < s2) return 0;
if (s1 > s2) return 2;
return 1;
#else
cout << "? " << u << " " << v << endl;
cout << flush;
int x;
cin >> x;
return x;
#endif
}
bool vis[N];
vector<int> nod;
void markall(int u, int f) {
vis[u] = true;
for (int v : g[u])
if (v != f && !vis[v]) {
markall(v, u);
}
}
tuple<int, int> cho;
int mxp[N];
int search(int u, int f) {
int s = 1;
mxp[u] = 0;
for (int v : g[u])
if (v != f && !vis[v]) {
int ch = search(v, u);
s += ch;
mxp[u] = max(mxp[u], ch);
}
mxp[u] = max(mxp[u], sz(nod) - s);
cho = min(cho, make_tuple(mxp[u], u));
return s;
}
int count_size(int u, int f) {
int sum = 1;
for (int v : g[u])
if (!vis[v] && v != f) {
sum += count_size(v, u);
}
return sum;
}
int solve() {
log("!!! (internal) s = %d\n", _s);
fill(vis + 1, vis + n + 1, false);
int res = -1;
int cnt = 0;
while (true) {
nod.clear();
for (int i = 1; i <= n; i++)
if (!vis[i]) {
nod.emplace_back(i);
}
log("loop >> sz=%d\n", sz(nod));
if (sz(nod) == 1) {
res = nod[0];
break;
}
++cnt;
if (sz(nod) == 2) {
int u = nod[0], v = nod[1];
int w = ask(u, v);
res = w == 0 ? u : v;
break;
}
int rt = nod[0];
for (int u : nod)
if (dep[u] < dep[rt]) {
rt = u;
}
auto &[diff, u] = cho;
diff = INT_MAX;
search(rt, -1);
log("searched: %d %d\n", diff, u);
assert(diff != INT_MAX);
vector<pair<int, int>> c;
for (int t : g[u])
if (!vis[t]) {
c.emplace_back(count_size(t, u), t);
}
assert(2 <= sz(c) && sz(c) <= 3);
sort(all(c));
auto solve_uv = [&](int u, int v) {
log("ask u=%d v=%d\n", u, v);
int cho = ask(u, v);
assert(cho != 1);
if (cho == 0) {
markall(v, u);
} else {
markall(u, v);
}
};
auto solve_uw = [&](int u, int v, int w) {
log("ask u=%d w=%d (v=%d)\n", u, w, v);
int cho = ask(u, w);
if (cho == 0) {
markall(v, u);
} else if (cho == 1) {
markall(u, v);
markall(w, v);
} else if (cho == 2) {
markall(v, w);
}
};
if (sz(c) == 2) {
if (c[0].first == c[1].first) {
solve_uw(c[0].second, u, c[1].second);
} else {
solve_uv(u, c[1].second /* bigger subtree */);
}
} else {
solve_uw(c[1].second, u, c[2].second);
}
}
assert(res != -1);
assert((1ull << cnt) <= n);
return res;
}
void solve_main() {
for (int u = 1; u <= n; u++)
for (int v : g[u]) {
log("edge %d %d\n", u, v);
}
fill(fa + 1, fa + n + 1, 0);
fill(dep + 1, dep + n + 1, 0);
dep[1] = 1;
dfs(1);
#ifdef memset0
for (_s = 1; _s <= n; _s++) {
int ans = solve();
cout << "! " << ans << endl;
assert(ans == _s);
}
#else
int ans = solve();
cout << "! " << ans << endl;
cout << flush;
#endif
}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int rand(int l, int r) { return uniform_int_distribution<>(l, r)(rng); }
int uni[N];
int uni_find(int x) {
if (x == uni[x]) return x;
return uni[x] = uni_find(uni[x]);
}
int main() {
#ifdef memset0
freopen("G.in", "r", stdin);
#endif
cin.tie(0)->sync_with_stdio(0);
// int T = 100000, N = 5;
// for (int t = 1; t <= T; t++) {
// n = rand(2, N);
// for (int i = 1; i <= n; i++) {
// g[i].clear();
// uni[i] = i;
// }
// for (int u, v, i = 1; i < n; i++) {
// do {
// u = rand(1, n);
// v = rand(1, n);
// } while (u == v || find(all(g[u]), v) != g[u].end() || sz(g[u]) == 2 || sz(g[v]) == 2 || uni_find(u) == uni_find(v));
// g[u].emplace_back(v);
// g[v].emplace_back(u);
// uni[uni_find(u)] = uni_find(v);
// log("edge[%d] = %d, %d\n", i, u, v);
// }
// solve_main();
// }
// return 0;
cin >> T;
while (T--) {
cin >> n;
for (int i = 1; i <= n; i++) {
g[i].clear();
}
for (int u, v, i = 1; i <= n; i++) {
cin >> u >> v;
if (u) {
g[i].emplace_back(u);
g[u].emplace_back(i);
}
if (v) {
g[i].emplace_back(v);
g[v].emplace_back(i);
}
}
solve_main();
}
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3592kb
input:
2 5 0 0 1 5 2 4 0 0 0 0 2 0 2 0 2 0 0 2
output:
? 5 3 ? 3 4 ! 3 ? 1 2 ! 2
result:
ok OK (2 test cases)
Test #2:
score: 0
Accepted
time: 60ms
memory: 6384kb
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 1 2 8 5 8 0 0 1 7 0 0 0 0 4 2 0 0 6 0 2 1 0 5 4 5 3 1 0 0 0 0 0 0 1 0 8 0 0 0 0 5 6 0 0 1 4 2 0 3 8 0 0 2 0 5 3 0 5 1 0 0 0 0 4 0 2 2 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 2 3 2 3 0 0 0 0 0 10 2 8 9 7 0 0 ...
output:
? 6 8 ? 4 8 ? 3 4 ! 4 ? 3 7 ? 3 4 ? 1 2 ! 2 ? 3 8 ? 4 8 ? 2 6 ! 2 ? 5 2 ? 1 4 ! 1 ? 7 5 ? 1 4 ! 1 ? 1 5 ? 4 5 ! 5 ? 2 4 ? 1 5 ! 5 ? 2 3 ! 3 ? 1 2 ! 2 ? 2 3 ! 2 ? 9 7 ? 4 7 ? 3 6 ! 6 ? 1 2 ! 1 ? 5 9 ? 5 8 ? 3 4 ! 4 ? 5 10 ? 6 8 ? 8 10 ! 10 ? 3 9 ? 7 9 ? 1 2 ! 2 ? 1 2 ! 2 ? 3 4 ? 1 7 ! 1 ? 9 4 ? 2 8 ?...
result:
ok OK (5555 test cases)
Test #3:
score: 0
Accepted
time: 37ms
memory: 5836kb
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:
? 1 2 ! 2 ? 1 3 ! 3 ? 1 4 ? 1 2 ! 2 ? 3 4 ? 3 5 ! 3 ? 1 6 ? 1 5 ! 5 ? 2 6 ? 2 4 ! 4 ? 1 5 ? 6 8 ? 5 6 ! 6 ? 1 9 ? 6 8 ? 5 8 ! 8 ? 2 6 ? 7 8 ? 2 7 ! 2 ? 2 9 ? 4 8 ? 4 9 ! 4 ? 6 9 ? 3 10 ? 5 10 ! 10 ? 2 3 ? 8 12 ? 1 12 ! 1 ? 4 12 ? 1 6 ? 1 4 ! 9 ? 2 14 ? 8 15 ? 8 13 ! 12 ? 1 13 ? 5 14 ? 3 12 ? 4 12 ! ...
result:
ok OK (600 test cases)
Test #4:
score: 0
Accepted
time: 155ms
memory: 19004kb
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:
? 43991 70790 ? 46637 98261 ? 58487 69452 ? 15987 33433 ? 55639 60027 ? 49467 68543 ? 44552 66043 ? 6841 11216 ? 28022 54345 ? 91905 98028 ? 41834 70439 ? 25588 27347 ? 75939 77052 ? 43441 44031 ? 29204 72340 ? 29204 44031 ! 44031 ? 5676 44110 ? 58000 63067 ? 38328 94632 ? 75910 76582 ? 4983 42451 ?...
result:
ok OK (2 test cases)
Test #5:
score: 0
Accepted
time: 80ms
memory: 11500kb
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 ? 1 5 ? 2 5 ! 5 ? 6 9 ? 3 7 ? 3 6 ! 3 ? 13 29 ? 17 18 ? 1 24 ? 1 17 ! 17 ? 8 37 ? 10 24 ? 12 57 ? 4 46 ? 46 57 ! 34 ? 36 89 ? 96 110 ? 20 79 ? 62 106 ? 82 86 ? 61 82 ! 82 ? 64 233 ? 51 148 ? 19 31 ? 7 56 ? 10 217 ? 144 195 ? 56 144 ! 56 ? 48 439 ? 437 468 ? 3 274 ? 277 285 ? 125 377 ? 104 ...
result:
ok OK (15 test cases)
Test #6:
score: 0
Accepted
time: 72ms
memory: 12328kb
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:
? 1 2 ! 2 ? 1 3 ? 1 4 ! 4 ? 4 8 ? 3 6 ? 6 7 ! 6 ? 3 11 ? 5 13 ? 1 2 ? 1 3 ! 3 ? 12 16 ? 11 17 ? 1 31 ? 4 18 ? 18 31 ! 18 ? 8 60 ? 15 41 ? 37 55 ? 16 28 ? 31 34 ? 31 55 ! 31 ? 57 80 ? 48 72 ? 38 92 ? 29 79 ? 8 85 ? 27 84 ? 29 84 ! 84 ? 90 106 ? 82 116 ? 61 170 ? 202 228 ? 132 196 ? 18 163 ? 50 107 ? ...
result:
ok OK (16 test cases)
Test #7:
score: 0
Accepted
time: 82ms
memory: 11876kb
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:
? 1 2 ! 2 ? 1 5 ? 1 4 ! 2 ? 4 14 ? 6 12 ? 3 6 ! 3 ? 21 27 ? 5 8 ? 3 6 ? 3 21 ! 21 ? 33 60 ? 2 9 ? 6 25 ? 8 14 ? 2 14 ! 14 ? 70 94 ? 37 90 ? 75 99 ? 30 65 ? 98 106 ? 65 98 ! 98 ? 12 159 ? 47 235 ? 169 248 ? 1 84 ? 219 234 ? 8 80 ? 8 159 ! 8 ? 68 359 ? 190 319 ? 141 239 ? 62 353 ? 265 488 ? 311 389 ? ...
result:
ok OK (15 test cases)
Test #8:
score: 0
Accepted
time: 29ms
memory: 3688kb
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 1 0 6 3 5 1 4 0 0 6 0 0 0 0 0 2 0 7 3 7 0 0 0 0 2 5 0 0 1 4 0 0 2 0 8 0 0 3 7 1 0 2 5 6 8 0 0 0 0 0 0 2 1 2 9 9 8 0 0 7 2 0 0 0 0 0 0 0 0 4 5 3 6 2 1 0 10 3 6 8 0 4 2 5 7 0 0 10 9 0 0 0 0 0 0 0 0 2 1 2 11 0 0 4 9 5 8 6 3 0 0...
output:
? 1 2 ! 2 ? 2 3 ! 3 ? 1 4 ? 1 3 ! 3 ? 5 2 ? 3 4 ! 3 ? 5 2 ? 2 6 ! 2 ? 1 4 ? 2 5 ! 2 ? 3 4 ? 6 8 ? 4 5 ! 5 ? 3 1 ? 4 5 ? 1 8 ! 1 ? 4 1 ? 9 10 ? 1 6 ! 6 ? 6 2 ? 10 11 ? 2 9 ! 9 ? 11 1 ? 8 4 ? 1 7 ! 1 ? 8 13 ? 6 12 ? 11 13 ! 13 ? 10 14 ? 8 3 ? 1 9 ! 9 ? 8 14 ? 4 9 ? 1 3 ! 3 ? 10 15 ? 14 15 ? 3 15 ? 1 1...
result:
ok OK (600 test cases)
Test #9:
score: 0
Accepted
time: 89ms
memory: 10444kb
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:
? 69076 50379 ? 11838 79924 ? 15463 18079 ? 41708 88632 ? 40612 63141 ? 24579 54568 ? 8545 83751 ? 58468 97010 ? 27367 63737 ? 41106 75498 ? 75918 88129 ? 21204 62215 ? 21024 45669 ? 65796 79889 ? 6771 73169 ! 73169 ? 78976 72481 ? 84675 96633 ? 2124 81852 ? 13836 79494 ? 24965 80643 ? 74893 78402 ?...
result:
ok OK (2 test cases)
Test #10:
score: 0
Accepted
time: 57ms
memory: 8784kb
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:
? 2 3 ! 1 ? 2 7 ? 1 5 ! 5 ? 5 15 ? 6 8 ? 10 11 ! 10 ? 17 29 ? 6 25 ? 15 31 ? 10 23 ! 23 ? 1 2 ? 48 53 ? 23 28 ? 8 34 ? 21 49 ! 34 ? 20 115 ? 68 71 ? 21 73 ? 26 61 ? 36 119 ? 12 23 ! 23 ? 70 140 ? 78 250 ? 4 223 ? 35 207 ? 170 189 ? 50 137 ? 69 160 ! 69 ? 60 121 ? 74 414 ? 249 474 ? 97 321 ? 119 279 ...
result:
ok OK (15 test cases)
Test #11:
score: 0
Accepted
time: 50ms
memory: 8260kb
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 2 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 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 0 ...
output:
? 1 2 ! 2 ? 1 4 ? 1 2 ! 2 ? 1 8 ? 6 8 ? 4 7 ! 7 ? 1 16 ? 5 14 ? 7 11 ! 7 ? 3 32 ? 21 22 ? 14 23 ? 1 24 ! 24 ? 58 37 ? 19 40 ? 30 38 ? 23 45 ? 1 2 ! 45 ? 28 92 ? 21 75 ? 47 122 ? 76 121 ? 17 25 ? 109 118 ! 118 ? 221 245 ? 223 245 ? 131 150 ? 34 193 ? 71 164 ? 148 230 ? 97 220 ! 97 ? 324 81 ? 36 227 ?...
result:
ok OK (16 test cases)
Test #12:
score: 0
Accepted
time: 54ms
memory: 9020kb
input:
15 2 0 0 1 0 2 6 6 4 1 5 0 0 0 0 3 0 0 0 2 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 2 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 2 0 1 62 0 0 0 0 28 47 7 38 0 0 0 0 17 26...
output:
? 1 2 ! 2 ? 6 2 ? 2 3 ! 3 ? 12 14 ? 8 2 ? 1 7 ! 1 ? 17 28 ? 13 5 ? 14 30 ? 16 24 ! 14 ? 43 61 ? 30 18 ? 31 50 ? 10 51 ? 8 21 ! 51 ? 93 125 ? 123 17 ? 5 15 ? 10 84 ? 99 109 ? 60 78 ! 109 ? 241 253 ? 193 112 ? 88 124 ? 99 254 ? 110 162 ? 125 248 ? 84 219 ! 219 ? 69 284 ? 30 32 ? 22 406 ? 231 379 ? 168...
result:
ok OK (15 test cases)
Test #13:
score: 0
Accepted
time: 27ms
memory: 3680kb
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 1 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 0 2 9 5 2 0 0 7 4 6 8 0 0 0 0 0 0 9 1 0 0 2 2 2 10 3 5 10 7 0 0 0 0 6 2 0 0 4 0 9 1 0 0 0 0 2 0 0 11 9 6 4 1 0 0 0 0 11 ...
output:
? 1 2 ! 2 ? 1 3 ! 3 ? 1 4 ? 1 2 ! 2 ? 4 1 ? 3 5 ! 3 ? 4 5 ? 3 4 ! 4 ? 7 4 ? 5 6 ! 6 ? 3 7 ? 1 7 ? 1 2 ! 2 ? 1 4 ? 3 4 ? 4 6 ! 6 ? 1 2 ? 2 7 ? 2 10 ! 2 ? 1 10 ? 11 10 ? 5 8 ! 8 ? 1 12 ? 11 12 ? 2 11 ! 11 ? 4 2 ? 2 12 ? 7 12 ! 12 ? 8 12 ? 12 14 ? 1 4 ! 1 ? 9 14 ? 14 1 ? 11 15 ! 15 ? 15 10 ? 5 6 ? 6 10...
result:
ok OK (600 test cases)
Test #14:
score: 0
Accepted
time: 115ms
memory: 15128kb
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 ? 9490 49372 ? 93805 51870 ? 74496 96975 ? 266 90932 ? 77780 99552 ? 1205 14734 ? 35403 83539 ? 86219 23936 ? 33022 85013 ? 67901 29326 ? 29326 85013 ? 27059 85013 ! 27059 ? 86513 70265 ? 6109 30583 ? 74855 26639 ? 83080 82870 ? 39637 44869 ? 59...
result:
ok OK (2 test cases)
Test #15:
score: 0
Accepted
time: 63ms
memory: 10476kb
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 ? 13 30 ! 29 ? 44 38 ? 1 42 ? 9 2 ? 2 34 ? 5 23 ! 23 ? 31 51 ? 62 96 ? 8 100 ? 89 52 ? 52 82 ? 57 70 ! 70 ? 122 124 ? 102 162 ? 231 84 ? 135 110 ? 223 147 ? 147 236 ? 80 201 ! 236 ? 266 322 ? 414 146 ? 335 72 ? 306 66 ? 76 89 ...
result:
ok OK (15 test cases)
Test #16:
score: 0
Accepted
time: 54ms
memory: 10508kb
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 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 0 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:
? 1 2 ! 2 ? 2 3 ? 1 2 ! 2 ? 7 5 ? 5 6 ? 2 6 ! 2 ? 4 8 ? 8 16 ? 9 16 ? 3 9 ! 3 ? 17 11 ? 4 12 ? 12 31 ? 11 31 ? 11 29 ! 11 ? 43 56 ? 25 19 ? 36 55 ? 19 51 ? 51 55 ? 50 55 ! 50 ? 43 38 ? 19 66 ? 12 105 ? 63 83 ? 83 114 ? 105 114 ? 44 114 ! 114 ? 170 133 ? 121 75 ? 114 72 ? 250 247 ? 169 30 ? 247 176 ?...
result:
ok OK (16 test cases)
Test #17:
score: 0
Accepted
time: 59ms
memory: 10720kb
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:
? 1 2 ! 2 ? 2 6 ? 4 6 ! 4 ? 11 14 ? 7 14 ? 7 10 ! 7 ? 8 20 ? 1 9 ? 9 27 ? 9 24 ! 24 ? 42 59 ? 12 31 ? 19 40 ? 12 40 ? 40 47 ! 47 ? 17 40 ? 69 77 ? 25 84 ? 59 90 ? 25 90 ? 25 31 ! 31 ? 90 189 ? 158 221 ? 132 198 ? 62 251 ? 127 170 ? 170 189 ? 170 186 ! 170 ? 60 192 ? 29 303 ? 190 312 ? 241 495 ? 35 4...
result:
ok OK (15 test cases)
Test #18:
score: 0
Accepted
time: 123ms
memory: 10496kb
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:
? 35226 52174 ? 16093 26122 ? 10853 11494 ? 91694 11494 ? 73088 90037 ? 21572 90037 ? 91442 51091 ? 93596 7067 ? 14316 75096 ? 55875 75096 ? 96805 42793 ? 42793 59747 ? 472 67072 ? 59747 64770 ! 92650 ? 36933 80592 ? 68004 50906 ? 65219 73367 ? 33796 20489 ? 19704 74041 ? 74041 35779 ? 85560 35779 ?...
result:
ok OK (2 test cases)
Test #19:
score: 0
Accepted
time: 240ms
memory: 5632kb
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:
? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 1 ? 1 2 ! 1 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 2 ? 1 2 ! 2 ...
result:
ok OK (100000 test cases)
Extra Test:
score: 0
Extra Test Passed