結果
問題 | No.2338 Range AtCoder Query |
ユーザー | no way |
提出日時 | 2023-06-02 22:49:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 178 ms / 4,000 ms |
コード長 | 1,116 bytes |
コンパイル時間 | 2,050 ms |
コンパイル使用メモリ | 170,912 KB |
実行使用メモリ | 18,560 KB |
最終ジャッジ日時 | 2024-06-09 00:35:52 |
合計ジャッジ時間 | 9,662 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
8,448 KB |
testcase_01 | AC | 5 ms
8,448 KB |
testcase_02 | AC | 5 ms
8,448 KB |
testcase_03 | AC | 6 ms
8,448 KB |
testcase_04 | AC | 6 ms
8,320 KB |
testcase_05 | AC | 6 ms
8,448 KB |
testcase_06 | AC | 6 ms
8,320 KB |
testcase_07 | AC | 6 ms
8,320 KB |
testcase_08 | AC | 6 ms
8,448 KB |
testcase_09 | AC | 6 ms
8,320 KB |
testcase_10 | AC | 6 ms
8,448 KB |
testcase_11 | AC | 122 ms
16,000 KB |
testcase_12 | AC | 120 ms
15,872 KB |
testcase_13 | AC | 127 ms
16,256 KB |
testcase_14 | AC | 109 ms
15,488 KB |
testcase_15 | AC | 142 ms
16,832 KB |
testcase_16 | AC | 171 ms
18,432 KB |
testcase_17 | AC | 174 ms
18,540 KB |
testcase_18 | AC | 170 ms
18,556 KB |
testcase_19 | AC | 173 ms
18,432 KB |
testcase_20 | AC | 171 ms
18,560 KB |
testcase_21 | AC | 173 ms
18,548 KB |
testcase_22 | AC | 170 ms
18,560 KB |
testcase_23 | AC | 170 ms
18,560 KB |
testcase_24 | AC | 169 ms
18,500 KB |
testcase_25 | AC | 172 ms
18,432 KB |
testcase_26 | AC | 43 ms
13,056 KB |
testcase_27 | AC | 44 ms
13,056 KB |
testcase_28 | AC | 45 ms
13,000 KB |
testcase_29 | AC | 160 ms
18,432 KB |
testcase_30 | AC | 178 ms
18,560 KB |
testcase_31 | AC | 166 ms
18,560 KB |
testcase_32 | AC | 150 ms
15,360 KB |
testcase_33 | AC | 115 ms
16,308 KB |
testcase_34 | AC | 115 ms
16,324 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=2e5+10; pair<int,int>ans[N],tree[N],f[N]; vector<pair<int,int>>w[N]; int n,m,q,x,y; int a[N],b[N]; char s[10]; void add(int x,pair<int,int>y){ while (x<=n){ tree[x].first+=y.first; tree[x].second+=y.second; x+=(x&(-x)); } } pair<int,int> solve(int x){ pair<int,int>ans=make_pair(0,0); while (x){ ans.first+=tree[x].first; ans.second+=tree[x].second; x-=(x&(-x)); } return ans; } int main(){ scanf("%d%d%d",&n,&m,&q); for (int i=1;i<=n;i++){ scanf("%d%s",&a[i],s); if (s[0]=='A') b[i]=1; else b[i]=0; } for (int i=1;i<=q;i++){ scanf("%d%d",&x,&y); w[x].push_back(make_pair(y,i)); } for (int i=n;i>=1;i--){ if (b[i]){ if (f[a[i]].first){ add(f[a[i]].first,make_pair(-1,-f[a[i]].second)); } f[a[i]].first=i; f[a[i]].second=0; add(i,make_pair(1,0)); }else{ if (f[a[i]].first){ add(f[a[i]].first,make_pair(0,1)); f[a[i]].second++; } } for (int j=0;j<w[i].size();j++){ ans[w[i][j].second]=solve(w[i][j].first); } } for (int i=1;i<=q;i++) printf("%d %d\n",ans[i].first,ans[i].second); }