結果
問題 | No.2338 Range AtCoder Query |
ユーザー | FplusFplusF |
提出日時 | 2023-06-02 23:38:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,850 bytes |
コンパイル時間 | 4,376 ms |
コンパイル使用メモリ | 244,348 KB |
実行使用メモリ | 285,952 KB |
最終ジャッジ日時 | 2024-06-09 01:54:59 |
合計ジャッジ時間 | 11,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,888 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } struct Mo{ int n; vector<pair<int,int>> lr; Mo(int x){ n=x; } void add(int l,int r){ lr.emplace_back(l,r); } template<class IL,class IR,class EL,class ER,class O> void solve(IL &insert_left,IR &insert_right,EL &erase_left,ER &erase_right,O &output){ int q=lr.size(); if(q==0) return; int block_size=max(1,n/(int)sqrt(q)); vector<int> ord(q); for(int i=0;i<q;i++) ord[i]=i; sort(ord.begin(),ord.end(), [&](int i,int j){ int block_i=lr[i].first/block_size,block_j=lr[j].first/block_size; if(block_i!=block_j) return lr[i].first<lr[j].first; if(block_i&1) return lr[i].second>lr[j].second; else return lr[i].second<lr[j].second; } ); int l=0,r=0; for(auto &idx:ord){ while(lr[idx].first<l) l--,insert_left(l); while(r<lr[idx].second) insert_right(r),r++; while(l<lr[idx].first) erase_left(l),l++; while(lr[idx].second<r) r--,erase_right(r); output(idx); } } template<class I,class E,class O> void solve(I &insert,E &erase,O &output){ solve(insert,insert,erase,erase,output); } }; ll f(deque<ll> &d,ll x){ ll n=d.size(); if(n==0) return 0; if(x<d.front()) return 0; if(d.back()<x) return n; ll ok=0,ng=n-1; while(1<abs(ok-ng)){ ll mid=(ok+ng)/2; if(d[mid]<=x) ok=mid; else ng=mid; } return ok; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll n,m,q; cin >> n >> m >> q; vector<ll> p(n); vector<bool> s(n); rep(i,n){ cin >> p[i]; p[i]--; string str; cin >> str; if(str=="AC") s[i]=true; if(str=="WA") s[i]=false; } Mo mo(n); vector<ll> ac(q),wa(q); rep(i,q){ ll l,r; cin >> l >> r; l--; mo.add(l,r); } vector<deque<ll>> a(m),w(m); ll now_a=0,now_w=0; auto il=[&](ll i){ if(s[i]){ if((ll)a[p[i]].size()==0) now_a++; else now_w-=f(w[p[i]],a[p[i]].front()); a[p[i]].push_front(i); }else{ if(1<=(ll)a[p[i]].size()) now_w++; w[p[i]].push_front(i); } }; auto ir=[&](ll i){ if(s[i]){ if((ll)a[p[i]].size()==0){ now_a++; now_w+=f(w[p[i]],i); } a[p[i]].push_back(i); }else{ w[p[i]].push_back(i); } }; auto el=[&](ll i){ if(s[i]){ a[p[i]].pop_front(); if((ll)a[p[i]].size()==0){ now_a--; }else{ now_w-=f(w[p[i]],i); now_w+=f(w[p[i]],a[p[i]].front()); } }else{ w[p[i]].pop_front(); if(1<=(ll)a[p[i]].size()) now_w--; } }; auto er=[&](ll i){ if(s[i]){ a[p[i]].pop_back(); if((ll)a[p[i]].size()==0){ now_a--; now_w-=f(w[p[i]],i); } }else{ w[p[i]].pop_back(); } }; auto o=[&](ll i){ ac[i]=now_a; wa[i]=now_w; }; mo.solve(il,ir,el,er,o); rep(i,q){ cout << ac[i] << " " << wa[i] << '\n'; } }