이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
vector <bool> arr1_bad(200007,0);
vector <bool> arr2_bad(500,1);
int N;
int heavy1;
int heavy2;
int query1(int loc)
{
int l=0;
int r=N-1;
int m=(l+r)/2;
int left=0;
while(l!=r)
{
while(arr1_bad[m]==1 && m>l)
{
m--;
}
if(m==l && arr1_bad[m]==1)
{
m=(l+r)/2;
if(left+m-l+1<=loc)
{
return l+loc-left-1;
}
left+=m-l+1;
l=m+1;
m=(l+r)/2;
continue;
}
vector <int> res=ask(m);
if(res[0]+res[1]<heavy1)
{
arr1_bad[m]=1;
continue;
}
if(res[0]<loc)
{
l=m+1;
left=res[0];
}
else
{
r=m;
}
m=(l+r)/2;
}
return l;
}
int query2(int loc)
{
int l=0;
int r=heavy1-1;
int m=(l+r)/2;
int left=0;
while(l!=r)
{
while(arr2_bad[m]==1 && m>l)
{
m--;
}
if(m==l && arr2_bad[m]==1)
{
m=(l+r)/2;
if(left+m-l+1<=loc)
{
return l+loc-left-1;
}
left+=m-l+1;
l=m+1;
m=(l+r)/2;
continue;
}
vector <int> res=ask(query1(m));
if(res[0]+res[1]<heavy2)
{
arr2_bad[m]=1;
continue;
}
if(res[0]<loc)
{
l=m+1;
left=res[0];
}
else
{
r=m;
}
m=(l+r)/2;
}
return l;
}
int find_best(int n)
{
N=n;
for(int i=0;i<min(500,n);i++)
{
vector <int> res=ask(i);
heavy1=max(heavy1,res[0]+res[1]);
}
if(heavy1==1)
{
int l=0;
int r=n-1;
int m=(l+r)/2;
while(l!=r)
{
vector <int> res=ask(m);
if(res[1]==0)
{
r=m;
}
else
{
l=m+1;
}
m=(l+r)/2;
}
return m;
}
for(int i=0;i<min(25,heavy1);i++)
{
vector <int> res=ask(query1(i));
heavy2=max(heavy2,res[0]+res[1]);
}
for(int i=0;1;i++)
{
vector <int> res=ask(query1(query2(i)));
if(res[0]+res[1]==0)
{
return query1(query2(i));
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |