# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
289787 | Bill_00 | 커다란 상품 (IOI17_prize) | C++14 | 1 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
int ans,m;
int p[200001]={0};
void search(int mid,int l,int r,int l1,int r0){
int ll=0,rr=0;
vector<int>res=ask(mid);
if(res[0]+res[1]==0){
ans=mid;
return;
}
if(l==r){
return;
}
if(res[0]==0){
ll++;
}
if(res[1]==0){
rr++;
}
if(l1==res[1]){
rr++;
}
if(r0==res[0]){
ll++;
}
if(rr==0){
if(l+1==mid) return;
search(mid+r>>1,mid,r,res[1],r0);
}
if(ll==0){
if(mid+1==r) return;
search(mid+l>>1,l,mid,l1,res[0]);
}
}
int find_best(int n){
m=n;
/*for(int i = 0; i < n; i++) {
std::vector<int> res = ask(i);
if(res[0] + res[1] == 0)
return i;
}*/
int l=0,r=n-1;
int mid=(l+r)>>1;
vector<int>lll=ask(l);
vector<int>rrr=ask(r);
search(mid,l,r,lll[1],rrr[0]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |