結果

問題 No.2992 Range ABCD String Query
ユーザー ygussanyygussany
提出日時 2024-12-17 00:46:06
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 1,688 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 44,800 KB
最終ジャッジ日時 2024-12-17 00:48:19
合計ジャッジ時間 131,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
10,496 KB
testcase_01 AC 158 ms
44,672 KB
testcase_02 AC 425 ms
10,496 KB
testcase_03 AC 268 ms
44,672 KB
testcase_04 AC 497 ms
13,760 KB
testcase_05 AC 208 ms
10,496 KB
testcase_06 AC 388 ms
44,544 KB
testcase_07 AC 74 ms
29,496 KB
testcase_08 AC 534 ms
42,496 KB
testcase_09 AC 256 ms
25,984 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 382 ms
39,704 KB
testcase_21 AC 383 ms
39,680 KB
testcase_22 AC 417 ms
39,552 KB
testcase_23 AC 382 ms
39,664 KB
testcase_24 AC 370 ms
39,668 KB
testcase_25 AC 546 ms
39,628 KB
testcase_26 AC 510 ms
39,640 KB
testcase_27 AC 546 ms
39,680 KB
testcase_28 AC 510 ms
39,552 KB
testcase_29 AC 537 ms
39,640 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 56 ms
5,248 KB
testcase_38 AC 65 ms
5,248 KB
testcase_39 AC 74 ms
5,248 KB
testcase_40 AC 79 ms
44,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void chmin(int *a, int b)
{
	if (*a > b) *a = b;
}

const int sup = 1 << 30;
int leaf[200001];

typedef struct {
	int left, right, trans[4][4];
} seg_node;

void init_node(seg_node v[], int k, int l, int r)
{
	int y, z;
	v[k].left = l;
	v[k].right = r;
	for (y = 0; y < 4; y++) for (z = y; z < 4; z++) v[k].trans[y][z] = 1;
	if (l < r) {
		init_node(v, k << 1, l, (l + r) / 2);
		init_node(v, (k << 1) ^ 1, (l + r) / 2 + 1, r);
	} else leaf[l] = k;
}

void update_node(seg_node v[], int k, int x)
{
	int i, j = leaf[k], y, z;
	for (y = 0; y < 4; y++) for (z = y; z < 4; z++) v[j].trans[y][z] = (y <= x && x <= z)? 0: 1;
	for (i = j >> 1; i > 0; j = i, i >>= 1) {
		if ((j & 1) != 0) j ^= 1;
		for (y = 0; y < 4; y++) for (z = y; z < 4; z++) for (x = y, v[i].trans[y][z] = sup; x <= z; x++) chmin(&(v[i].trans[y][z]), v[j].trans[y][x] + v[j^1].trans[x][z]);
	}
}

int get_trans(seg_node v[], int k, int l, int r, int y, int z)
{
	int x, ans = sup;
	if (v[k].right < l || v[k].left > r) return 0;
	else if (v[k].left >= l && v[k].right <= r) return v[k].trans[y][z];
	else {
		for (x = y; x <= z; x++) chmin(&ans, get_trans(v, k << 1, l, r, y, x) + get_trans(v, (k << 1) ^ 1, l, r, x, z));
		return ans;
	}
}

int main()
{
	int N, Q;
	char S[200001];
	scanf("%d %d", &N, &Q);
	scanf("%s", S);
	
	int i;
	seg_node v[524288];
	init_node(v, 1, 1, N);
	for (i = 1; i <= N; i++) update_node(v, i, S[i-1] - 'A');
	
	int t, x, l, r, ans;
	char c;
	while (Q--) {
		scanf("%d", &t);
		if (t == 1) {
			scanf("%d %c", &x, &c);
			update_node(v, x, c - 'A');
		} else {
			scanf("%d %d", &l, &r);
			printf("%d\n", get_trans(v, 1, l, r, 0, 3));
		}
	}
	fflush(stdout);
	return 0;
}
0