이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include<bits/stdc++.h>
#define F first
#define S second
using namespace std;
pair<int,int>p,p1;
vector<int>v,v1;
int ans=0;
void go(int L,int R)
{
if(L>R)return;
if(L==R)
{
v=ask(L);
if(v[0]+v[1]==0)
{
ans=L;
return;
}
}
else
{
v=ask(L);
if(v[0]+v[1]==0)
{
ans=L;
return;
}
v1=ask(R);
if(v1[0]+v1[1]==0)
{
ans=R;
return;
}
if(v[0]==v1[0] || v[1]==v1[1])return;
int mid=(L+R)/2;
go(L+1,mid);
go(mid+1,R-1);
}
}
int find_best(int n) {
go(0,n-1);
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |