This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prize.h"
#include <fstream>
#include <vector>
#include <iostream>
#include <cmath>
using namespace std;
const int nmax=200005;
const int prdf=500;//modifici dupa asta
int lg[nmax];
int spec[nmax];
int mx,nr,i,n;
vector<int> v[nmax];
int cate_st(int poz)
{
if(v[poz].empty()) v[poz]=ask(poz);
return v[poz][0];
}
int cate(int poz)
{
if(v[poz].empty()) v[poz]=ask(poz);
return (v[poz][0]+v[poz][1]);
}
pair<int,int> vezi_al_catelea(int x)
{
int pp=0;
while(x<n&&cate(x)<mx)
x++;
if(x==n) pp=mx;
else pp=cate_st(x);
x--;
pair<int,int> ret;
ret.second=pp;
while(x>=0&&cate(x)<mx)
{
spec[pp]=x;
pp--;x--;
}
ret.first=pp;
return ret;
}
void solve(int st,int dr)
{
if(st+1>=dr) return;
int len=spec[dr]-spec[st];
int poz=spec[st];
for(int p=lg[len];p>=0;p--)
{
if(poz+(1<<p)<spec[dr])
{
if(cate(poz+(1<<p))<mx)
{
poz+=(1<<p);
pair<int,int> pe=vezi_al_catelea(poz);
solve(st,pe.first);solve(pe.second,dr);
return;
}
if(cate_st(poz+(1<<p))==st&&cate(poz+(1<<p))==mx)
poz+=(1<<p);
}
}
poz++;spec[st+1]=poz;
}
int find_best(int N) {
n=N;
for(i=2;i<=n+1;i++)
lg[i]=lg[i/2]+1;
for(i=0;i<min(prdf,n);i++)
{
v[i]=ask(i);
if(v[i][0]+v[i][1]>mx)
mx=v[i][0]+v[i][1];
}
spec[0]=-1;
for(i=0;i<min(prdf,n);i++)
{
if(v[i][0]+v[i][1]!=mx)
{
spec[++nr]=i;
if(!cate(i)) return i;
}
}
spec[mx+1]=n;
solve(nr,mx+1);
for(i=1;i<=mx;i++)
if(cate(spec[i])==0)
return spec[i];
return 0;
}
Compilation message (stderr)
prize.cpp: In function 'int find_best(int)':
prize.cpp:85:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=1;i<=mx;i++)
^~~
prize.cpp:88:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
return 0;
^~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |