結果

問題 No.2338 Range AtCoder Query
ユーザー kotatsugamekotatsugame
提出日時 2023-06-02 22:28:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,067 ms / 4,000 ms
コード長 2,067 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 91,148 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-06-08 23:56:55
合計ジャッジ時間 34,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
15,744 KB
testcase_01 AC 11 ms
15,872 KB
testcase_02 AC 11 ms
15,872 KB
testcase_03 AC 12 ms
15,744 KB
testcase_04 AC 11 ms
15,744 KB
testcase_05 AC 11 ms
15,744 KB
testcase_06 AC 13 ms
15,872 KB
testcase_07 AC 14 ms
15,744 KB
testcase_08 AC 13 ms
15,872 KB
testcase_09 AC 14 ms
15,744 KB
testcase_10 AC 14 ms
15,872 KB
testcase_11 AC 1,163 ms
26,880 KB
testcase_12 AC 1,115 ms
26,880 KB
testcase_13 AC 1,232 ms
27,136 KB
testcase_14 AC 1,323 ms
26,496 KB
testcase_15 AC 1,395 ms
27,904 KB
testcase_16 AC 1,767 ms
31,744 KB
testcase_17 AC 1,761 ms
31,872 KB
testcase_18 AC 1,802 ms
31,872 KB
testcase_19 AC 1,688 ms
31,872 KB
testcase_20 AC 2,067 ms
31,872 KB
testcase_21 AC 1,819 ms
31,872 KB
testcase_22 AC 1,771 ms
31,744 KB
testcase_23 AC 1,692 ms
31,744 KB
testcase_24 AC 1,710 ms
31,872 KB
testcase_25 AC 1,715 ms
32,000 KB
testcase_26 AC 112 ms
27,008 KB
testcase_27 AC 102 ms
27,008 KB
testcase_28 AC 105 ms
27,008 KB
testcase_29 AC 776 ms
31,616 KB
testcase_30 AC 2,035 ms
31,872 KB
testcase_31 AC 622 ms
36,480 KB
testcase_32 AC 565 ms
35,584 KB
testcase_33 AC 240 ms
30,384 KB
testcase_34 AC 241 ms
30,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#include<deque>
#include<cassert>
using namespace std;
int ALL,CNT;
int P[2<<17];
bool S[2<<17];
vector<int>idx[2<<17];
vector<int>nxt[2<<17];
int ac[2<<17];
int L[2<<17],R[2<<17];
void inc(int);
void dec(int);
void push_front(int id)
{
	dec(P[id]);
	L[P[id]]--;
	if(S[id])ac[P[id]]++;
	inc(P[id]);
}
void push_back(int id)
{
	dec(P[id]);
	R[P[id]]++;
	if(S[id])ac[P[id]]++;
	inc(P[id]);
}
void pop_front(int id)
{
	dec(P[id]);
	L[P[id]]++;
	if(S[id])ac[P[id]]--;
	inc(P[id]);
}
void pop_back(int id)
{
	dec(P[id]);
	R[P[id]]--;
	if(S[id])ac[P[id]]--;
	inc(P[id]);
}
void dec(int p)
{
	if(ac[p]>=1)
	{
		ALL-=nxt[p][L[p]];
		CNT--;
	}
}
void inc(int p)
{
	if(ac[p]>=1)
	{
		ALL+=nxt[p][L[p]];
		CNT++;
	}
}
int N,M,Q;
const int B=500;
const int MN=200000;
vector<pair<int,pair<int,int> > >qR[(MN+B-1)/B];
int cnt[2<<17],ans[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M>>Q;
	for(int i=0;i<N;i++)
	{
		string s;
		cin>>P[i]>>s;
		P[i]--;
		S[i]=s=="AC";
		idx[P[i]].push_back(i);
	}
	for(int i=0;i<M;i++)
	{
		nxt[i].resize(idx[i].size());
		int c=0;
		for(int j=nxt[i].size();j--;)
		{
			if(S[idx[i][j]])c=0;
			else c++;
			nxt[i][j]=c;
		}
	}
	for(int i=0;i<Q;i++)
	{
		int l,r;cin>>l>>r;
		l--;
		qR[l/B].push_back(make_pair(r,make_pair(l,i)));
	}
	int nL=0,nR=0;
	for(int li=0;li*B<N;li++)
	{
		if(li&1)
		{
			sort(qR[li].begin(),qR[li].end(),[&li](const pair<int,pair<int,int> >&l,const pair<int,pair<int,int> >&r)
			{
				return l.first>r.first;
			});
		}
		else
		{
			sort(qR[li].begin(),qR[li].end(),[&li](const pair<int,pair<int,int> >&l,const pair<int,pair<int,int> >&r)
			{
				return l.first<r.first;
			});
		}
		for(pair<int,pair<int,int> >p:qR[li])
		{
			int l=p.second.first;
			int r=p.first;
			while(nL>l)push_front(--nL);
			while(nR<r)push_back(nR++);
			while(nL<l)pop_front(nL++);
			while(nR>r)pop_back(--nR);
			cnt[p.second.second]=CNT;
			ans[p.second.second]=ALL;
		}
	}
	for(int i=0;i<Q;i++)cout<<cnt[i]<<" "<<ans[i]<<"\n";
}
0