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 <bits/stdc++.h>
#include "prize.h"
using namespace std;
mt19937 rng((long long) (new char));
int rn(int l, int r) {
return l + rng() % (r - l + 1);
}
int rep(int l, int r) {
if (l > r) return 0;
///int i = rn(l, r);
int i = (l + r) / 2;
vector<int> v = ask(i);
if (v[0] == 0 && v[1] == 0) return i;
if (v[0] > v[1]) {
int x = rep(l, i - 1);
if (x) {
return x;
} else {
return rep(i + 1, r);
}
} else {
int x = rep(i + 1, r);
if (x) {
return x;
} else {
return rep(l, i - 1);
}
}
}
int find_best(int n) {
return rep(0, n - 1);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |