Submission #52801

#TimeUsernameProblemLanguageResultExecution timeMemory
52801zetapiHoliday (IOI14_holiday)C++14
30 / 100
2000 ms15688 KiB
//#include <holiday.h> #include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define ll long long #define itr ::iterator typedef pair<ll,ll> pii; const int MAX=3e5; struct data { ll ind; ll sum; } seg[MAX]; vector<pii> sorted; ll N,D,Start,pos[MAX],f[MAX][2],g[MAX][2]; void build(int low,int high,int node) { if(low==high) { if(low<=sorted.size()) { seg[node].ind=1; seg[node].sum=sorted[low-1].first; } else { seg[node].ind=0; seg[node].sum=0; } return ; } int mid=(low+high)/2; build(low,mid,2*node); build(mid+1,high,2*node+1); seg[node].ind=seg[2*node].ind+seg[2*node+1].ind; seg[node].sum=seg[2*node].sum+seg[2*node+1].sum; return ; } void update(int low,int high,int node,int idx,int delta) { if(low==high) { seg[node].ind=delta; if(delta) seg[node].sum=sorted[low-1].first; else seg[node].sum=0; return ; } int mid=(low+high)/2; if(idx>=low and idx<=mid) update(low,mid,2*node,idx,delta); else update(mid+1,high,2*node+1,idx,delta); seg[node].ind=seg[2*node].ind+seg[2*node+1].ind; seg[node].sum=seg[2*node].sum+seg[2*node+1].sum; return ; } ll query(int low,int high,int node,int K) { if(low==high) return seg[node].sum; int mid=(low+high)/2; if(seg[2*node].ind>=K) return query(low,mid,2*node,K); return seg[2*node].sum+query(mid+1,high,2*node+1,K-seg[2*node].ind); } ll cal(int idx,int qlow,int qhigh,int type) { int rem; pii res=mp(0,-qlow); for(int A=qhigh;A>=qlow;A--) { rem=idx-(type+1)*(A-Start); if(rem>0) res=max(res,mp(query(1,N,1,rem),(ll)-A)); update(1,N,1,pos[A],0); } for(int A=qlow;A<=qhigh;A++) update(1,N,1,pos[A],1); return -res.second; } ll cal2(int idx,int qlow,int qhigh,int type) { int rem; pii res=mp(0,qhigh); for(int A=qlow;A<=qhigh;A++) { rem=idx-(type+1)*(Start-A); if(rem>0) res=max(res,mp(query(1,N,1,rem),(ll)A)); update(1,N,1,pos[A],0); } for(int A=qlow;A<=qhigh;A++) update(1,N,1,pos[A],1); return res.second; } void cal(int low,int high,int qlow,int qhigh,int type) { if(low>high) return ; int mid=(low+high)/2; f[mid][type]=cal(mid,qlow,qhigh,type); if(low==high) { for(int A=qlow+1;A<qhigh;A++) update(1,N,1,pos[A],0); return ; } cal(mid+1,high,f[mid][type],qhigh,type); cal(low,mid-1,qlow,f[mid][type],type); return ; } void cal2(int low,int high,int qlow,int qhigh,int type) { if(low>high) return ; int mid=(low+high)/2; g[mid][type]=cal2(mid,qlow,qhigh,type); if(low==high) { for(int A=qlow;A<qhigh;A++) update(1,N,1,pos[A],0); return ; } cal2(mid+1,high,qlow,g[mid][type],type); cal2(low,mid-1,g[mid][type],qhigh,type); return ; } long long int findMaxAttraction(int n,int start,int d,int attraction[]) { N=n; D=d; Start=start+1; ll cur,res=0,res1=0,tem=attraction[start]; attraction[start]=0; for(int A=start;A<N;A++) sorted.pb(mp(attraction[A],A+1)); sort(sorted.begin(),sorted.end()); reverse(sorted.begin(),sorted.end()); for(int A=0;A<sorted.size();A++) pos[sorted[A].second]=A+1; build(1,N,1); cal(1,D,Start,min(Start+D,N),0); build(1,N,1); cal(1,D,Start,min(Start+D,N),1); sorted.clear(); for(int A=0;A<=start;A++) sorted.pb(mp(attraction[A],A+1)); sort(sorted.begin(),sorted.end()); reverse(sorted.begin(),sorted.end()); for(int A=0;A<sorted.size();A++) pos[sorted[A].second]=A+1; build(1,N,1); cal2(1,D,max((ll)1,Start-D),Start,0); build(1,N,1); cal2(1,D,max((ll)1,Start-D),Start,1); int ptr=Start,ptr1=1,Starting,last,remain; f[0][0]=Start; f[0][1]=Start; g[0][0]=Start; g[0][1]=Start; sorted.clear(); for(int A=0;A<N;A++) sorted.pb(mp(attraction[A],A+1)); sort(sorted.begin(),sorted.end()); reverse(sorted.begin(),sorted.end()); for(int A=0;A<sorted.size();A++) pos[sorted[A].second]=A+1; build(1,N,1); for(int A=Start;A<=N;A++) update(1,N,1,pos[A],0); for(int A=0;A<=D;A++) { last=f[A][1]; remain=D-A; Starting=g[remain][0]; remain=D-2*(last-Start)-(Start-Starting); //cout<<Starting<<" "<<last<<" go go \n"; if(remain<0) continue; while(ptr<=last) update(1,N,1,pos[ptr++],1); while(ptr1<Starting) update(1,N,1,pos[ptr1++],0); res=max(res,query(1,N,1,remain)); if(remain>1) res=max(res,query(1,N,1,remain-1)+tem); } build(1,N,1); for(int A=1;A<=Start;A++) update(1,N,1,pos[A],0); ptr=Start; ptr1=N; for(int A=0;A<=D;A++) { Starting=g[A][1]; remain=D-A; if(remain<0) continue; last=f[remain][0]; remain=D-2*(Start-Starting)-(last-Start); if(remain<0) continue; //cout<<Starting<<" "<<last<<" ho ho \n"; while(ptr>=Starting) update(1,N,1,pos[ptr--],1); while(ptr1>last) update(1,N,1,pos[ptr1--],0); res=max(res,query(1,N,1,remain)); if(remain>1) res=max(res,query(1,N,1,remain-1)+tem); } if(D) res=max(res,tem); return res; } /*int main() { ios_base::sync_with_stdio(false); int n,d,s,attraction[100000]={10,2,20,30,1}; cout<<findMaxAttraction( n=5, s=2, d=7, attraction); return 0; }*/

Compilation message (stderr)

holiday.cpp: In function 'void build(int, int, int)':
holiday.cpp:28:9: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if(low<=sorted.size())
      ~~~^~~~~~~~~~~~~~~
holiday.cpp: In function 'long long int findMaxAttraction(int, int, int, int*)':
holiday.cpp:156:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int A=0;A<sorted.size();A++)
              ~^~~~~~~~~~~~~~
holiday.cpp:167:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int A=0;A<sorted.size();A++)
              ~^~~~~~~~~~~~~~
holiday.cpp:183:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int A=0;A<sorted.size();A++)
              ~^~~~~~~~~~~~~~
holiday.cpp:150:5: warning: unused variable 'cur' [-Wunused-variable]
  ll cur,res=0,res1=0,tem=attraction[start];
     ^~~
holiday.cpp:150:15: warning: unused variable 'res1' [-Wunused-variable]
  ll cur,res=0,res1=0,tem=attraction[start];
               ^~~~
grader.cpp: In function 'int main()':
grader.cpp:7:12: warning: variable 'n_s' set but not used [-Wunused-but-set-variable]
     int i, n_s;
            ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...