# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
758444 | Andrey | 커다란 상품 (IOI17_prize) | C++14 | 123 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include<bits/stdc++.h>
using namespace std;
int find_best(int n) {
int y = 0,l,r,m,x,big = 0,z;
while(y < n) {
l = y;
r = n-1;
vector<int> a = ask(y);
x = a[0];
z = a[1];
if(x+z != big) {
if(a[0] == 0 && a[1] == 0) {
return y;
}
y++;
continue;
}
while(l < r) {
m = (l+r+1)/2;
a = ask(m);
if(a[0] == x && a[1] == z) {
l = m;
}
else {
r = m-1;
}
}
a = ask(l+1);
if(a[0] == 0 && a[1] == 0) {
return l+1;
}
y = l+2;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |