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