# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
236573 | pit4h | 커다란 상품 (IOI17_prize) | C++14 | 11 ms | 400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5+1;
int total;
int n;
vector<int> vec;
int get_next(int pos) {
int l = log2(n-1 - pos);
int p = pos;
auto Ask = ask(p+1);
if(Ask[0] + Ask[1] != total) {
return p+1;
}
int pref = Ask[0];
vector<vector<int>> calced(l+1);
int lo = 0, hi = l, m;
while(lo <= hi) {
m = (lo + hi)/2;
if(p+(1<<m) >= n) hi = m-1;
calced[m] = ask(p+(1<<m));
if(calced[m][0] + calced[m][1] == total && calced[m][0]-pref==0) {
lo = m+1;
}
else {
hi = m-1;
}
}
for(int i=m; i>=0; --i) {
if(p+(1<<i)>=n) continue;
auto res = (calced[i].empty()?ask(p + (1<<i)):calced[i]);
if(res[0] - pref==0 && res[0]+res[1]==total) {
p += (1<<i);
}
}
p++;
return p;
}
int find_best(int N) {
n = N;
int pos = -1;
for(int i=0; i<min(n, 500); ++i) {
auto res = ask(i);
if(i!=0 && res[0] + res[1] > total) {
total = res[0] + res[1];
pos = i-1;
}
if(res[0] + res[1]==0) return i;
if(res[0] + res[1] < total) pos = i;
if(total > 500) break;
}
while(true) {
pos = get_next(pos);
auto Ask = ask(pos);
if(Ask[0] + Ask[1] == 0) return pos;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |