結果
問題 | No.2992 Range ABCD String Query |
ユーザー | ygussany |
提出日時 | 2024-12-17 01:18:04 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 522 ms / 6,000 ms |
コード長 | 1,856 bytes |
コンパイル時間 | 497 ms |
コンパイル使用メモリ | 32,128 KB |
実行使用メモリ | 39,680 KB |
最終ジャッジ日時 | 2024-12-17 01:18:27 |
合計ジャッジ時間 | 16,541 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
5,248 KB |
testcase_01 | AC | 84 ms
5,248 KB |
testcase_02 | AC | 104 ms
5,248 KB |
testcase_03 | AC | 100 ms
5,248 KB |
testcase_04 | AC | 111 ms
5,248 KB |
testcase_05 | AC | 88 ms
5,248 KB |
testcase_06 | AC | 108 ms
5,248 KB |
testcase_07 | AC | 75 ms
5,248 KB |
testcase_08 | AC | 110 ms
5,248 KB |
testcase_09 | AC | 95 ms
5,248 KB |
testcase_10 | AC | 488 ms
39,552 KB |
testcase_11 | AC | 507 ms
39,552 KB |
testcase_12 | AC | 474 ms
39,536 KB |
testcase_13 | AC | 447 ms
39,424 KB |
testcase_14 | AC | 458 ms
28,416 KB |
testcase_15 | AC | 442 ms
39,368 KB |
testcase_16 | AC | 404 ms
20,864 KB |
testcase_17 | AC | 522 ms
39,668 KB |
testcase_18 | AC | 423 ms
28,288 KB |
testcase_19 | AC | 521 ms
39,552 KB |
testcase_20 | AC | 357 ms
39,632 KB |
testcase_21 | AC | 349 ms
39,680 KB |
testcase_22 | AC | 377 ms
39,680 KB |
testcase_23 | AC | 354 ms
39,680 KB |
testcase_24 | AC | 355 ms
39,552 KB |
testcase_25 | AC | 495 ms
39,552 KB |
testcase_26 | AC | 455 ms
39,660 KB |
testcase_27 | AC | 445 ms
39,644 KB |
testcase_28 | AC | 481 ms
39,552 KB |
testcase_29 | AC | 450 ms
39,644 KB |
testcase_30 | AC | 389 ms
39,588 KB |
testcase_31 | AC | 416 ms
39,624 KB |
testcase_32 | AC | 393 ms
39,628 KB |
testcase_33 | AC | 415 ms
39,680 KB |
testcase_34 | AC | 394 ms
39,552 KB |
testcase_35 | AC | 487 ms
39,624 KB |
testcase_36 | AC | 503 ms
39,680 KB |
testcase_37 | AC | 53 ms
5,248 KB |
testcase_38 | AC | 60 ms
5,248 KB |
testcase_39 | AC | 64 ms
5,248 KB |
testcase_40 | AC | 65 ms
5,248 KB |
ソースコード
#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]); } } void get_trans(seg_node v[], int k, int l, int r, int prev[], int cur[]) { int x, y, tmp[4]; if (v[k].right < l || v[k].left > r) { for (x = 0; x < 4; x++) cur[x] = prev[x]; } else if (v[k].left >= l && v[k].right <= r) { for (x = 0; x < 4; x++) for (y = 0, cur[x] = sup; y <= x; y++) chmin(&(cur[x]), prev[y] + v[k].trans[y][x]); } else { get_trans(v, k << 1, l, r, prev, tmp); get_trans(v, (k << 1) ^ 1, l, r, tmp, cur); } } 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[2][4]; 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); for (i = 0; i < 4; i++) ans[0][i] = 0; get_trans(v, 1, l, r, ans[0], ans[1]); printf("%d\n", ans[1][3]); } } fflush(stdout); return 0; }