結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー cho435cho435
提出日時 2023-12-08 19:22:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 939 ms / 5,000 ms
コード長 854 bytes
コンパイル時間 4,727 ms
コンパイル使用メモリ 270,880 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-09-27 03:00:04
合計ジャッジ時間 39,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 99 ms
27,392 KB
testcase_13 AC 774 ms
88,960 KB
testcase_14 AC 154 ms
24,576 KB
testcase_15 AC 693 ms
95,616 KB
testcase_16 AC 412 ms
26,752 KB
testcase_17 AC 654 ms
49,508 KB
testcase_18 AC 192 ms
6,272 KB
testcase_19 AC 309 ms
26,368 KB
testcase_20 AC 783 ms
92,580 KB
testcase_21 AC 238 ms
9,344 KB
testcase_22 AC 939 ms
96,684 KB
testcase_23 AC 920 ms
96,640 KB
testcase_24 AC 923 ms
96,640 KB
testcase_25 AC 914 ms
96,716 KB
testcase_26 AC 915 ms
96,768 KB
testcase_27 AC 918 ms
96,640 KB
testcase_28 AC 852 ms
96,760 KB
testcase_29 AC 839 ms
96,624 KB
testcase_30 AC 847 ms
96,740 KB
testcase_31 AC 843 ms
96,640 KB
testcase_32 AC 106 ms
5,376 KB
testcase_33 AC 106 ms
5,376 KB
testcase_34 AC 113 ms
5,376 KB
testcase_35 AC 115 ms
5,376 KB
testcase_36 AC 117 ms
5,376 KB
testcase_37 AC 824 ms
96,640 KB
testcase_38 AC 817 ms
96,600 KB
testcase_39 AC 817 ms
96,640 KB
testcase_40 AC 825 ms
96,656 KB
testcase_41 AC 834 ms
96,660 KB
testcase_42 AC 835 ms
96,640 KB
testcase_43 AC 860 ms
96,664 KB
testcase_44 AC 828 ms
96,768 KB
testcase_45 AC 821 ms
96,768 KB
testcase_46 AC 836 ms
96,768 KB
testcase_47 AC 860 ms
96,640 KB
testcase_48 AC 870 ms
96,768 KB
testcase_49 AC 844 ms
96,640 KB
testcase_50 AC 848 ms
96,612 KB
testcase_51 AC 842 ms
96,604 KB
testcase_52 AC 851 ms
96,768 KB
testcase_53 AC 847 ms
96,768 KB
testcase_54 AC 857 ms
96,768 KB
testcase_55 AC 846 ms
96,640 KB
testcase_56 AC 886 ms
96,768 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),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];
		smb+=b.v1[i];
	}
	c.sm=a.sm+b.sm;
	rep(i,26){
		c.v2[i]+=a.v1[i]*(smb-b.v1[i]);
		c.sm+=a.v1[i]*b.v2[i];
		c.sm+=(a.v1[i]-1)*a.v1[i]/2*(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