이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
int res = -1;
int c = 0;
int find_best(int n) {
int current = 0;
int val = ask(current)[1];
int rk = val;
while(true){
int l = 0;
int r = n;
while(r-l > 0){
int m = (r+l)/2;
c++;
if(c == 10000)while(true);
vector<int> ans = ask(m);
int v = ans[0]+ans[1];
if(v == 0){
res = m;
break;
}
if(ans[1] == val && v ==rk){
l = m;
}else if(v == rk){
r = m;
}
if(v != rk){
r = m;
}
}
if(res !=-1)break;
if(l == current){
current++;
c++;
if(c == 10000)while(true);
vector<int> ans = ask(current);
int v = ans[0]+ans[1];
if(v == 0){
res = current;
break;
}
rk = v;
val = ans[1];
}else{
current = l;
c++;
if(c == 10000)while(true);
vector<int> ans = ask(current);
int v = ans[0]+ans[1];
if(v == 0){
res = current;
break;
}
rk = v;
val = ans[1];
}
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |