結果

問題 No.2992 Range ABCD String Query
ユーザー tailstails
提出日時 2024-12-17 14:37:38
言語 cLay
(20240714-1)
結果
AC  
実行時間 120 ms / 6,000 ms
コード長 764 bytes
コンパイル時間 4,041 ms
コンパイル使用メモリ 180,012 KB
実行使用メモリ 25,184 KB
最終ジャッジ日時 2024-12-17 14:37:49
合計ジャッジ時間 10,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,816 KB
testcase_01 AC 16 ms
6,820 KB
testcase_02 AC 20 ms
6,816 KB
testcase_03 AC 19 ms
6,816 KB
testcase_04 AC 22 ms
6,816 KB
testcase_05 AC 18 ms
6,820 KB
testcase_06 AC 21 ms
6,816 KB
testcase_07 AC 11 ms
8,260 KB
testcase_08 AC 23 ms
6,820 KB
testcase_09 AC 18 ms
6,824 KB
testcase_10 AC 104 ms
22,228 KB
testcase_11 AC 104 ms
21,844 KB
testcase_12 AC 109 ms
23,632 KB
testcase_13 AC 105 ms
22,356 KB
testcase_14 AC 96 ms
20,436 KB
testcase_15 AC 99 ms
20,568 KB
testcase_16 AC 80 ms
16,036 KB
testcase_17 AC 104 ms
22,744 KB
testcase_18 AC 93 ms
21,836 KB
testcase_19 AC 105 ms
24,648 KB
testcase_20 AC 79 ms
23,248 KB
testcase_21 AC 78 ms
23,252 KB
testcase_22 AC 113 ms
24,260 KB
testcase_23 AC 81 ms
24,580 KB
testcase_24 AC 80 ms
24,152 KB
testcase_25 AC 117 ms
24,524 KB
testcase_26 AC 112 ms
23,604 KB
testcase_27 AC 120 ms
24,528 KB
testcase_28 AC 118 ms
23,676 KB
testcase_29 AC 112 ms
24,532 KB
testcase_30 AC 76 ms
25,100 KB
testcase_31 AC 73 ms
24,528 KB
testcase_32 AC 76 ms
24,528 KB
testcase_33 AC 74 ms
25,184 KB
testcase_34 AC 75 ms
25,040 KB
testcase_35 AC 94 ms
23,896 KB
testcase_36 AC 91 ms
24,780 KB
testcase_37 AC 7 ms
6,820 KB
testcase_38 AC 9 ms
6,820 KB
testcase_39 AC 11 ms
6,820 KB
testcase_40 AC 12 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct N{
	int 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},
};

{
	int@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){
		int@a;
		if(a==1){
			int@x--;
			char@c;
			t.change(x,leaf[c-'A']);
		}
		if(a==2){
			int@l--,@r;
			wt(t.get(l,r).ad);
		}
	}
}
0