# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
316077 | MrDomino | 커다란 상품 (IOI17_prize) | C++14 | 76 ms | 1528 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "prize.h"
using namespace std;
mt19937 rng((long long) (new char));
int find_best(int n) {
vector<int> o;
for (int i = 0; i < n; i++) {
o.push_back(i);
}
reverse(o.begin(), o.end());
int q = 0;
int l = 0;
while (l < n) {
int r = l, lo = l + 1, hi = n - 1;
vector<int> v_l = ask(o[l]); q++;
if (v_l[0] == 0 && v_l[1] == 0) {
return o[l];
}
while (lo <= hi) {
int pos = (lo + hi) / 2;
vector<int> v_pos = ask(o[pos]); q++;
if (v_pos == v_l) {
r = pos;
lo = pos + 1;
} else {
hi = pos - 1;
}
}
l = r + 1;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |