結果
問題 | No.2338 Range AtCoder Query |
ユーザー | Rubikun |
提出日時 | 2023-06-03 00:22:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 724 ms / 4,000 ms |
コード長 | 3,797 bytes |
コンパイル時間 | 4,229 ms |
コンパイル使用メモリ | 241,716 KB |
実行使用メモリ | 22,152 KB |
最終ジャッジ日時 | 2024-06-09 02:44:51 |
合計ジャッジ時間 | 20,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
7,936 KB |
testcase_01 | AC | 4 ms
8,064 KB |
testcase_02 | AC | 5 ms
8,064 KB |
testcase_03 | AC | 5 ms
7,936 KB |
testcase_04 | AC | 6 ms
8,064 KB |
testcase_05 | AC | 4 ms
8,064 KB |
testcase_06 | AC | 6 ms
8,296 KB |
testcase_07 | AC | 6 ms
8,320 KB |
testcase_08 | AC | 8 ms
8,192 KB |
testcase_09 | AC | 6 ms
8,076 KB |
testcase_10 | AC | 7 ms
8,192 KB |
testcase_11 | AC | 572 ms
16,832 KB |
testcase_12 | AC | 528 ms
17,024 KB |
testcase_13 | AC | 584 ms
17,132 KB |
testcase_14 | AC | 575 ms
16,600 KB |
testcase_15 | AC | 666 ms
17,768 KB |
testcase_16 | AC | 718 ms
20,484 KB |
testcase_17 | AC | 722 ms
20,524 KB |
testcase_18 | AC | 716 ms
20,584 KB |
testcase_19 | AC | 714 ms
20,628 KB |
testcase_20 | AC | 714 ms
20,632 KB |
testcase_21 | AC | 714 ms
20,496 KB |
testcase_22 | AC | 719 ms
20,500 KB |
testcase_23 | AC | 723 ms
20,632 KB |
testcase_24 | AC | 724 ms
20,772 KB |
testcase_25 | AC | 717 ms
20,504 KB |
testcase_26 | AC | 90 ms
15,736 KB |
testcase_27 | AC | 86 ms
15,748 KB |
testcase_28 | AC | 90 ms
15,616 KB |
testcase_29 | AC | 344 ms
20,508 KB |
testcase_30 | AC | 617 ms
20,500 KB |
testcase_31 | AC | 280 ms
22,024 KB |
testcase_32 | AC | 255 ms
22,152 KB |
testcase_33 | AC | 195 ms
20,496 KB |
testcase_34 | AC | 192 ms
20,544 KB |
ソースコード
#pragma GCC optimize("O3,unroll-loops") #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #include <bits/stdc++.h> using namespace std; typedef long long ll; 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; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=200005,INF=1<<30; struct dat{ int l; int r; int id; }; int AC[MAX],WA[MAX]; const int D=500; vector<int> mae[MAX]; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); int N,M,Q;cin>>N>>M>>Q; vector<int> A(N); for(int i=0;i<N;i++){ int x;cin>>x;x--; string S;cin>>S; if(S=="AC") A[i]=x; else A[i]=~x; mae[x].push_back(i); } vector<int> ato(N); for(int i=M-1;i>=0;i--){ reverse(all(mae[i])); bool deta=false; int cn=0; for(int x:mae[i]){ if(A[x]>=0){ if(deta){ ato[x]=cn; }else{ deta=true; } cn=0; }else{ cn++; } } } int l=-1,r=-1; vector<dat> S(Q); vector<pair<int,int>> ans(Q); for(int i=0;i<Q;i++){ cin>>S[i].l>>S[i].r; S[i].l--; S[i].r--; S[i].id=i; } vector<int> usel; for(int i=0;i<Q;i++) usel.push_back(S[i].l/D); sort(all(usel)); usel.erase(unique(all(usel)),usel.end()); vector<int> ty(N); for(int i=0;i<si(usel);i++){ ty[usel[i]]=i&1; } sort(all(S),[&](auto a,auto b){ if(a.l/D==b.l/D){ if(ty[a.l/D]) return a.r>b.r; else return a.r<b.r; } return a.l/D<b.l/D; }); int ac=0,wa=0; for(int i=0;i<Q;i++){ while(S[i].r>r){ r++; if(A[r]>=0){ int x=A[r]; if(AC[x]==0){ wa+=WA[x]; ac++; } AC[x]++; }else{ int x=~A[r]; WA[x]++; } } while(S[i].l<l){ l--; if(A[l]>=0){ int x=A[l]; if(AC[x]>=1){ wa-=ato[l]; }else{ ac++; } AC[x]++; }else{ int x=~A[l]; if(AC[x]>=1){ wa++; } WA[x]++; } } while(S[i].r<r){ if(A[r]>=0){ int x=A[r]; if(AC[x]==1){ wa-=WA[x]; ac--; } AC[x]--; }else{ int x=~A[r]; WA[x]--; } r--; } while(S[i].l>l){ if(l>=0){ if(A[l]>=0){ int x=A[l]; if(AC[x]==1){ ac--; }else{ wa+=ato[l]; } AC[x]--; }else{ int x=~A[l]; if(AC[x]>=1){ wa--; } WA[x]--; } } l++; } ans[S[i].id]=mp(ac,wa); //break; } for(int i=0;i<Q;i++) cout<<ans[i].fi<<" "<<ans[i].se<<"\n"; }