이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 m = (l + r) / 2;
vector<int> v = ask(m);
if (v[0] == 0 && v[1] == 0) {
return m;
}
if (v[0] == 0) {
return rep(m + 1, r);
}
if (v[1] == 0) {
return rep(l, m - 1);
}
if (v[0] > v[1]) {
int x = rep(l, m - 1);
if (x) {
return x;
} else {
return rep(m + 1, r);
}
} else {
int x = rep(m + 1, r);
if (x) {
return x;
} else {
return rep(l, m - 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... |