이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 200100;
bool visited[maxn];
int find_best(int n) {
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
srand(time(NULL));
if(n <= 10000) {
for(int i=1;i<=n;i++) {
vector<int>v = ask(i);
if(v[0] == v[1]) return i;
}
}
int fst = 0, lst = INT_MAX;
for(int i=1;i<=9000;i++) {
int x = uniform_int_distribution<int>(0, n)(rng);
while(visited[x]) x = uniform_int_distribution<int>(0, n)(rng);
visited[x] = true;
vector<int>v = ask(x);
if(v[0] == v[1]) return x;
// looking for the last {0, 1}
// looking for the first {1, 0}
if(v[0] == 0) fst = max(fst, x);
else if(v[0] == 1) lst = min(lst, x);
}
for(int i=fst;i<=lst;i++) {
vector<int>v = ask(i);
if(v[0] == v[1]) return i;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |