結果

問題 No.2338 Range AtCoder Query
ユーザー no wayno way
提出日時 2023-06-02 22:47:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,094 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 172,228 KB
実行使用メモリ 18,684 KB
最終ジャッジ日時 2024-06-09 00:32:31
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,448 KB
testcase_01 AC 5 ms
8,320 KB
testcase_02 AC 5 ms
8,448 KB
testcase_03 AC 4 ms
8,448 KB
testcase_04 AC 5 ms
8,448 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 165 ms
18,460 KB
testcase_32 AC 153 ms
15,360 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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));
			}
		}
		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);
}
0