結果
問題 | No.2338 Range AtCoder Query |
ユーザー | FplusFplusF |
提出日時 | 2023-06-02 23:49:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,762 bytes |
コンパイル時間 | 5,949 ms |
コンパイル使用メモリ | 275,904 KB |
実行使用メモリ | 97,024 KB |
最終ジャッジ日時 | 2024-12-29 00:34:30 |
合計ジャッジ時間 | 102,611 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
38,272 KB |
testcase_01 | AC | 2 ms
13,764 KB |
testcase_02 | AC | 2 ms
13,760 KB |
testcase_03 | AC | 1 ms
13,760 KB |
testcase_04 | AC | 2 ms
13,764 KB |
testcase_05 | AC | 2 ms
38,836 KB |
testcase_06 | AC | 4 ms
39,444 KB |
testcase_07 | AC | 4 ms
40,696 KB |
testcase_08 | AC | 5 ms
55,340 KB |
testcase_09 | AC | 4 ms
13,764 KB |
testcase_10 | AC | 4 ms
55,424 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 149 ms
44,320 KB |
testcase_27 | AC | 80 ms
37,092 KB |
testcase_28 | AC | 92 ms
38,572 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 3,972 ms
48,592 KB |
testcase_32 | AC | 3,212 ms
48,536 KB |
testcase_33 | AC | 504 ms
48,584 KB |
testcase_34 | AC | 509 ms
97,024 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using ll=int; 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); } }; 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<tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>> 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-=w[p[i]].order_of_key(*begin(a[p[i]])); a[p[i]].insert(i); }else{ if(1<=(ll)a[p[i]].size()) now_w++; w[p[i]].insert(i); } }; auto ir=[&](ll i){ if(s[i]){ if((ll)a[p[i]].size()==0){ now_a++; now_w+=w[p[i]].order_of_key(i); } a[p[i]].insert(i); }else{ w[p[i]].insert(i); } }; auto el=[&](ll i){ if(s[i]){ a[p[i]].erase(i); if((ll)a[p[i]].size()==0){ now_a--; }else{ now_w-=w[p[i]].order_of_key(i); now_w+=w[p[i]].order_of_key(*begin(a[p[i]])); } }else{ w[p[i]].erase(i); if(1<=(ll)a[p[i]].size()) now_w--; } }; auto er=[&](ll i){ if(s[i]){ a[p[i]].erase(i); if((ll)a[p[i]].size()==0){ now_a--; now_w-=w[p[i]].order_of_key(i); } }else{ w[p[i]].erase(i); } }; 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'; } }