# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
797549 | alvingogo | 커다란 상품 (IOI17_prize) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#define AquA cin.tie(0);ios_base::sync_with_stdio(0);
#define fs first
#define sc second
#define p_q priority_queue
using namespace std;
map<int,vector<int> > m;
int c=0,k=0;
set<int> s;
vector<int> query(int x){
if(m.find(x)==m.end()){
m[x]=ask(x);
return m[x];
}
return m[x];
}
mt19937 rnd(43243214);
int find_best(int n) {
if(n<=5000){
for(int i=0;i<n;i++){
auto h=query(i);
if(h[0]==0 && h[1]==0){
return i;
}
}
}
queue<pair<int,int> > q2;
q2.push({-1,n});
int cr=0;;
while(q2.size() && cr<480){
auto h=q2.front();
q2.pop();
int x=(h.fs+h.sc)/2;
k=max(k,query(x)[0]+query(x)[1]);
q2.push(h.fs,x);
q2.push(x,h.sc);
cr++;
}
m[-1]={0,k};
m[n]={k,0};
queue<pair<int,int> > q;
q.push({-1,n});
while(q.size()){
auto h=q.front();
q.pop();
int cz=0;
for(auto it=s.lower_bound(h.fs);it!=s.end() && (*it)<h.sc;it++){
cz++;
}
if(query(h.fs)[0]==query(h.sc)[0]-cz){
continue;
}
int x=(h.fs+h.sc)/2;
int flag=0;
for(int i=x;i>h.fs;i--){
auto y=query(i);
if(y[0]+y[1]==k){
q.push({i,h.sc});
q.push({h.fs,i});
flag=1;
break;
}
else{
s.insert(i);
}
}
if(flag==0){
for(int i=x+1;i<h.sc;i++){
auto y=query(i);
if(y[0]+y[1]==k){
q.push({i,h.sc});
flag=1;
break;
}
else{
s.insert(i);
}
}
}
}
for(auto h:s){
if(query(h)[0]==0 && query(h)[1]==0){
return h;
}
}
return 0;
}