# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
69466 | Diuven | The Big Prize (IOI17_prize) | C++14 | 67 ms | 2424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
const int MX=200010;
bool up[MX];
int L[MX], R[MX], sum, n, ans;
void my_ask(int i){
static set<int> S;
if(S.find(i)!=S.end()) return;
S.insert(i);
vi now=ask(i);
L[i]=now[0], R[i]=now[1];
}
void search(int s, int e, int lc, int rc){
if(s>e) return;
int m=(s+e)/2;
for(int i=m; i<=e; i++){
my_ask(i);
if(L[i]+R[i]==0) ans=i;
if(L[i]+R[i]==sum){
if(lc<L[i]-(i-m)) search(s,m-1,lc,R[i]+i-m);
if(rc<R[i]) search(i+1,e,L[i],rc);
break;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |