# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1075832 | 2024-08-26T09:23:14 Z | mdn2002 | The Big Prize (IOI17_prize) | C++14 | 3 ms | 344 KB |
#include "prize.h" #include<bits/stdc++.h> using namespace std; int find_best(int n) { int mx = 0, lim = 500; for (int i = 0; i < min(n, lim); i ++) { vector<int> a = ask(i); mx = max(mx, a[0] + a[1]); if (a[0] + a[1] == 0) return i; } for (int i = 0; i < n; i ++) { vector<int> a = ask(i); if (a[0] + a[1] == mx) { vector<int> c = ask(min(n - 1, i + lim)); if (a[1] == c[1]) { i += min(n - 1, i + lim); continue; } for (int j = (1 << 9); j >= 1; j = (j + 1) / 2) { if (i + j >= n) continue; vector<int> b = ask(i + j); if (a[1] == b[1]) i += j; if (j == 1) break; } } else if (a[0] + a[1] == 0) return i; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 344 KB | Integer 256011 violates the range [0, 199999] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 344 KB | Integer 256011 violates the range [0, 199999] |
2 | Halted | 0 ms | 0 KB | - |