Submission #1067108

#TimeUsernameProblemLanguageResultExecution timeMemory
1067108AdamGSRadio Towers (IOI22_towers)C++17
0 / 100
679 ms33732 KiB
#include "towers.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; #define rep(a, b) for(int a = 0; a < (b); ++a) #define st first #define nd second #define pb push_back #define all(a) a.begin(), a.end() const ll INF=1e18+7; const int LIM=1e5+7; ll T[LIM], jaki[LIM], n; vector<ll>trma[4*LIM]; ll trmi[4*LIM], N=1; set<pair<ll,ll>>S, P; vector<pair<ll,ll>>V; void dodaj(int x) { auto it=S.lower_bound({x, -1}); ++it; auto a=*it; P.insert({abs(T[x]-T[a.st]), x}); } void usun(int x) { auto it=S.lower_bound({x, -1}); ++it; auto a=*it; P.erase({abs(T[x]-T[a.st]), x}); } int ile(int v, int x) { if(trma[v].size()==0) return 0; if(trma[v].back()<=x) return 0; int po=0, ko=trma[v].size()-1; while(po<ko) { int sr=(po+ko)/2; if(trma[v][sr]<=x) po=sr+1; else ko=sr; } return trma[v].size()-po; } int licz(int l, int r, int x) { l+=N; r+=N; int ans=ile(l, x); if(l!=r) ans+=ile(r, x); while(l/2!=r/2) { if(l%2==0) ans+=ile(l+1, x); if(r%2==1) ans+=ile(r-1, x); l/=2; r/=2; } return ans; } void init(int _n, vector<int>_H) { n=_n; while(N<n+2) N*=2; rep(i, 2*N) trmi[i]=-INF; rep(i, n) T[i+1]=_H[i]; T[0]=T[n+1]=INF; int akt=2; jaki[0]=jaki[n+1]=1; rep(i, n) if((T[i]<T[i+1] && T[i+1]>T[i+2]) || (T[i]>T[i+1] && T[i+1]<T[i+2])) { jaki[i+1]=akt; akt^=3; } rep(i, n+2) if(jaki[i]) S.insert({i, jaki[i]}); rep(i, n+2) if(!jaki[i]) trma[N+i].pb(0); auto it=S.begin(); while(true) { auto it2=it; ++it2; if(it2==S.end()) break; auto a=*it; dodaj(a.st); ++it; } V.pb({0, S.size()/2}); while(P.size()>2) { auto a=*P.begin(); usun(a.nd); trma[N+a.nd].pb(V.size()); auto it=S.lower_bound({a.nd, -1}); ++it; auto b=*it; trma[N+b.st].pb(V.size()); usun(b.st); --it; --it; b=*it; usun(b.st); ++it; S.erase(it); it=S.lower_bound({a.nd, -1}); S.erase(it); it=S.lower_bound({a.nd, -1}); --it; b=*it; dodaj(b.st); V.pb({a.st, S.size()/2}); } rep(i, n+2) if(trma[N+i].size()==0) trma[N+i].pb(INF); rep(i, n+2) trmi[N+i]=T[i]; for(int i=N-1; i; --i) { trmi[i]=min(trmi[2*i], trmi[2*i+1]); for(auto j : trma[2*i]) trma[i].pb(j); for(auto j : trma[2*i+1]) trma[i].pb(j); sort(all(trma[i])); } } int max_towers(int l, int r, int d) { ++l; ++r; int po=0, ko=V.size()-1; while(po<ko) { int sr=(po+ko+1)/2; if(V[sr].st<d) po=sr; else ko=sr-1; } int x=licz(l, r, po); return x/2; // l=0, r=n-1 }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...