結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー cho435cho435
提出日時 2023-12-08 19:16:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,258 ms / 5,000 ms
コード長 904 bytes
コンパイル時間 6,474 ms
コンパイル使用メモリ 272,924 KB
実行使用メモリ 136,416 KB
最終ジャッジ日時 2024-09-27 02:59:01
合計ジャッジ時間 52,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 136 ms
37,760 KB
testcase_13 AC 1,000 ms
125,384 KB
testcase_14 AC 193 ms
33,408 KB
testcase_15 AC 889 ms
134,652 KB
testcase_16 AC 505 ms
36,864 KB
testcase_17 AC 793 ms
69,084 KB
testcase_18 AC 244 ms
7,808 KB
testcase_19 AC 376 ms
36,096 KB
testcase_20 AC 982 ms
130,460 KB
testcase_21 AC 297 ms
11,904 KB
testcase_22 AC 1,161 ms
136,252 KB
testcase_23 AC 1,183 ms
136,260 KB
testcase_24 AC 1,183 ms
136,408 KB
testcase_25 AC 1,182 ms
136,216 KB
testcase_26 AC 1,166 ms
136,368 KB
testcase_27 AC 1,163 ms
136,368 KB
testcase_28 AC 1,200 ms
136,364 KB
testcase_29 AC 1,189 ms
136,192 KB
testcase_30 AC 1,160 ms
136,328 KB
testcase_31 AC 1,165 ms
136,348 KB
testcase_32 AC 126 ms
6,940 KB
testcase_33 AC 128 ms
6,944 KB
testcase_34 AC 140 ms
6,944 KB
testcase_35 AC 141 ms
6,940 KB
testcase_36 AC 138 ms
6,944 KB
testcase_37 AC 1,110 ms
136,212 KB
testcase_38 AC 1,085 ms
136,332 KB
testcase_39 AC 1,070 ms
136,416 KB
testcase_40 AC 1,088 ms
136,316 KB
testcase_41 AC 1,122 ms
136,212 KB
testcase_42 AC 1,132 ms
136,292 KB
testcase_43 AC 1,113 ms
136,232 KB
testcase_44 AC 1,106 ms
136,400 KB
testcase_45 AC 1,116 ms
136,324 KB
testcase_46 AC 1,120 ms
136,244 KB
testcase_47 AC 1,215 ms
136,312 KB
testcase_48 AC 1,190 ms
136,348 KB
testcase_49 AC 1,184 ms
136,336 KB
testcase_50 AC 1,258 ms
136,224 KB
testcase_51 AC 1,215 ms
136,412 KB
testcase_52 AC 1,187 ms
136,312 KB
testcase_53 AC 1,205 ms
136,384 KB
testcase_54 AC 1,226 ms
136,292 KB
testcase_55 AC 1,212 ms
136,264 KB
testcase_56 AC 1,215 ms
136,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i=0;i<(int)(n);i++)

struct S{
	vector<ll> v1,v2,v3;
	ll sm;
	S():v1(26,0),v2(26,0),v3(26,0),sm(0){}
};
S op(S a,S b){
	S c;
	ll smb=0;
	rep(i,26){
		c.v1[i]=a.v1[i]+b.v1[i];
		c.v2[i]=a.v2[i]+b.v2[i];
		c.v3[i]=a.v3[i]+b.v3[i];
		smb+=b.v1[i];
	}
	c.sm=a.sm+b.sm;
	rep(i,26){
		c.v2[i]+=a.v1[i]*(smb-b.v1[i]);
		c.v3[i]+=a.v1[i]*b.v1[i];
		c.sm+=a.v1[i]*b.v2[i];
		c.sm+=a.v3[i]*(smb-b.v1[i]);
	}
	return c;
}
S e(){
	return S();
}
S mk(char c){
	S s;
	s.v1[c-'A']++;
	return s;
}

int main(){
	int n,q;
	string s;
	cin>>n>>s>>q;
	atcoder::segtree<S,op,e> seg(n);
	rep(i,n) seg.set(i,mk(s[i]));
	rep(i,q){
		int t;
		cin>>t;
		if(t==1){
			int x;
			char c;
			cin>>x>>c;
			x--;
			seg.set(x,mk(c));
		}else{
			int l,r;
			cin>>l>>r;
			l--;
			cout<<seg.prod(l,r).sm<<"\n";
		}
	}
}
0