結果

問題 No.2992 Range ABCD String Query
ユーザー tailstails
提出日時 2024-12-17 14:04:40
言語 cLay
(20240714-1)
結果
AC  
実行時間 142 ms / 6,000 ms
コード長 759 bytes
コンパイル時間 3,875 ms
コンパイル使用メモリ 177,756 KB
実行使用メモリ 45,092 KB
最終ジャッジ日時 2024-12-17 14:04:52
合計ジャッジ時間 10,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,816 KB
testcase_01 AC 15 ms
6,820 KB
testcase_02 AC 19 ms
6,820 KB
testcase_03 AC 17 ms
6,816 KB
testcase_04 AC 22 ms
6,816 KB
testcase_05 AC 17 ms
6,820 KB
testcase_06 AC 21 ms
6,820 KB
testcase_07 AC 12 ms
6,824 KB
testcase_08 AC 21 ms
6,820 KB
testcase_09 AC 18 ms
6,816 KB
testcase_10 AC 116 ms
40,888 KB
testcase_11 AC 114 ms
40,144 KB
testcase_12 AC 115 ms
40,140 KB
testcase_13 AC 108 ms
36,952 KB
testcase_14 AC 115 ms
37,172 KB
testcase_15 AC 105 ms
37,516 KB
testcase_16 AC 94 ms
24,792 KB
testcase_17 AC 120 ms
42,184 KB
testcase_18 AC 107 ms
37,328 KB
testcase_19 AC 121 ms
41,040 KB
testcase_20 AC 91 ms
41,172 KB
testcase_21 AC 99 ms
44,828 KB
testcase_22 AC 98 ms
42,392 KB
testcase_23 AC 117 ms
42,344 KB
testcase_24 AC 95 ms
41,304 KB
testcase_25 AC 137 ms
40,788 KB
testcase_26 AC 135 ms
42,572 KB
testcase_27 AC 142 ms
40,660 KB
testcase_28 AC 141 ms
40,532 KB
testcase_29 AC 130 ms
41,888 KB
testcase_30 AC 88 ms
45,092 KB
testcase_31 AC 84 ms
41,556 KB
testcase_32 AC 83 ms
42,928 KB
testcase_33 AC 85 ms
41,560 KB
testcase_34 AC 86 ms
42,700 KB
testcase_35 AC 103 ms
41,044 KB
testcase_36 AC 102 ms
42,964 KB
testcase_37 AC 8 ms
6,820 KB
testcase_38 AC 9 ms
6,816 KB
testcase_39 AC 11 ms
6,820 KB
testcase_40 AC 10 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct N{
	ll aa,ab,ac,ad,bb,bc,bd,cc,cd,dd;
};

N segtree_ph_func(N a,N b){
	N r;
	r.aa=a.aa+b.aa;
	r.ab=min(a.aa+b.ab,a.ab+b.bb);
	r.ac=min(a.aa+b.ac,a.ab+b.bc,a.ac+b.cc);
	r.ad=min(a.aa+b.ad,a.ab+b.bd,a.ac+b.cd,a.ad+b.dd);
	r.bb=a.bb+b.bb;
	r.bc=min(a.bb+b.bc,a.bc+b.cc);
	r.bd=min(a.bb+b.bd,a.bc+b.cd,a.bd+b.dd);
	r.cc=a.cc+b.cc;
	r.cd=min(a.cc+b.cd,a.cd+b.dd);
	r.dd=a.dd+b.dd;
	return r;
}

N leaf[]={
	{0,0,0,0,1,1,1,1,1,1},
	{1,0,0,0,0,0,0,1,1,1},
	{1,1,0,0,1,0,0,0,0,1},
	{1,1,1,0,1,1,0,1,0,0},
};

{
	ll@n,@q;
	segtree_ph<N>t;
	t.malloc(n);
	t.setN(n);
	rep(i,n){
		char@c;
		t[i]=leaf[c-'A'];
	}
	t.build();
	rep(q){
		ll@a;
		if(a==1){
			ll@x--;
			char@c;
			t.change(x,leaf[c-'A']);
		}
		if(a==2){
			ll@l--,@r;
			wt(t.get(l,r).ad);
		}
	}
}
0