# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1075848 | mdn2002 | The Big Prize (IOI17_prize) | C++14 | 61 ms | 600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prize.h"
#include<bits/stdc++.h>
using namespace std;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
int find_best(int n) {
int mx = 0, lim = 500, xx = 200;
while (xx --) {
int i = rnd() % n;
vector<int> a = ask(i);
mx = max(mx, a[0] + a[1]);
}
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 = 500; 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 (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |