結果
問題 | No.728 ギブ and テイク |
ユーザー | mugen_1337 |
提出日時 | 2020-09-16 23:43:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 842 ms / 3,000 ms |
コード長 | 4,103 bytes |
コンパイル時間 | 3,778 ms |
コンパイル使用メモリ | 243,744 KB |
実行使用メモリ | 225,884 KB |
最終ジャッジ日時 | 2024-06-22 03:46:58 |
合計ジャッジ時間 | 10,909 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 38 ms
15,484 KB |
testcase_14 | AC | 56 ms
19,216 KB |
testcase_15 | AC | 24 ms
10,240 KB |
testcase_16 | AC | 51 ms
18,116 KB |
testcase_17 | AC | 48 ms
17,424 KB |
testcase_18 | AC | 549 ms
134,752 KB |
testcase_19 | AC | 586 ms
139,340 KB |
testcase_20 | AC | 747 ms
212,552 KB |
testcase_21 | AC | 622 ms
143,876 KB |
testcase_22 | AC | 222 ms
63,036 KB |
testcase_23 | AC | 134 ms
36,992 KB |
testcase_24 | AC | 458 ms
122,172 KB |
testcase_25 | AC | 464 ms
121,340 KB |
testcase_26 | AC | 213 ms
61,908 KB |
testcase_27 | AC | 842 ms
225,132 KB |
testcase_28 | AC | 469 ms
225,884 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define ALL(x) x.begin(),x.end() #define rep(i,n) for(int i=0;i<(n);i++) #define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl; #define mod 1000000007 using ll=long long; const int INF=1000000000; const ll LINF=1001002003004005006ll; int dx[]={1,0,-1,0},dy[]={0,1,0,-1}; // ll gcd(ll a,ll b){return b?gcd(b,a%b):a;} template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;} template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;} struct IOSetup{ IOSetup(){ cin.tie(0); ios::sync_with_stdio(0); cout<<fixed<<setprecision(12); } } iosetup; template<typename T1,typename T2> ostream &operator<<(ostream &os,const pair<T1,T2>&p){ os<<p.first<<" "<<p.second; return os; } template<typename T> ostream &operator<<(ostream &os,const vector<T>&v){ for(int i=0;i<(int)v.size();i++) os<<v[i]<<(i+1==(int)v.size()?"":" "); return os; } template<typename T1,typename T2> istream &operator>>(istream &is,pair<T1,T2>&p){ is>>p.first>>p.second; return is; } template<typename T> istream &operator>>(istream &is,vector<T>&v){ for(T &x:v)is>>x; return is; } template<typename Tx,typename Ty> struct FractionalCascading{ vector<vector<Ty>> seg; vector<vector<int>> L,R; vector<Tx> xs; int sz; // O(nlogn) FractionalCascading(vector<pair<Tx,Ty>> ps){ sort(begin(ps),end(ps)); if(ps.size()) xs.push_back(ps[0].first); for(auto &p:ps)if(xs.back()!=p.first)xs.push_back(p.first); xs.push_back(numeric_limits<Tx>::max()); sz=1; while(sz<(int)xs.size()) sz<<=1; seg.resize(2*sz); L.resize(2*sz); R.resize(2*sz); int pos=0; for(auto &p:ps){ if(xs[pos]!=p.first) pos++; seg[pos+sz].push_back(p.second); } for(int k=sz-1;k>0;k--){ seg[k].resize(seg[2*k].size()+seg[2*k+1].size()); L[k].resize(seg[k].size()+1); R[k].resize(seg[k].size()+1); merge(begin(seg[2*k]),end(seg[2*k]),begin(seg[2*k+1]),end(seg[2*k+1]),begin(seg[k])); int li=0,ri=0; for(int i=0;i<(int)seg[k].size();i++){ L[k][i]=li,R[k][i]=ri; if(li<(int)seg[2*k].size() and seg[2*k][li]==seg[k][i]) li++; else ri++; } L[k][seg[k].size()]=(int)seg[2*k].size(); R[k][seg[k].size()]=(int)seg[2*k+1].size(); } } int sub(int a,int b,int lw,int hi,int k,int l,int r){ if(r<=a or b<=l) return 0; if(a<=l and r<=b) return hi-lw; return sub(a,b,L[k][lw],L[k][hi],2*k,l,(l+r)/2)+sub(a,b,R[k][lw],R[k][hi],2*k+1,(l+r)/2,r); } // [le,ri), [lw,hi) int count(Tx le,Tx ri,Ty lw,Ty hi){ int lwid=lower_bound(begin(seg[1]),end(seg[1]),lw)-begin(seg[1]); int hiid=lower_bound(begin(seg[1]),end(seg[1]),hi)-begin(seg[1]); int leid=lower_bound(begin(xs),end(xs),le)-begin(xs); int riid=lower_bound(begin(xs),end(xs),ri)-begin(xs); return sub(leid,riid,lwid,hiid,1,0,sz); } }; void solve(){ int n,q;cin>>n>>q; vector<int>c(n); cin>>c; vector<pair<int,int>> d; map<int,int> pre; rep(i,n){ if(pre.count(c[i])) d.push_back({i,pre[c[i]]}); pre[c[i]]=i; } FractionalCascading<int,int> seg(d); while(q--){ int l,r;cin>>l>>r;l--; int ans=r-l-seg.count(l,r,l,r); cout<<ans<<"\n"; } } void solve_give_and(){ int n;cin>>n; ll a[n],l[n],r[n]; rep(i,n) cin>>a[i]; rep(i,n) cin>>l[i]>>r[i]; vector<pair<ll,ll>> ps; rep(i,n) ps.push_back({i,a[i]+r[i]}); FractionalCascading<ll,ll> seg(ps); ll ans=0; rep(i,n){ int idx=lower_bound(a,a+n,a[i]-l[i])-a; // [idx,i) // [a[i],INF) ans+=seg.count(idx,i,a[i],LINF); } cout<<ans<<endl; } signed main(){ // solve(); solve_give_and(); return 0; }