結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-15 10:22:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 652 ms / 6,000 ms
コード長 1,624 bytes
コンパイル時間 3,752 ms
コンパイル使用メモリ 251,348 KB
実行使用メモリ 48,948 KB
最終ジャッジ日時 2024-12-16 23:30:28
合計ジャッジ時間 22,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
6,816 KB
testcase_01 AC 234 ms
6,816 KB
testcase_02 AC 263 ms
6,820 KB
testcase_03 AC 249 ms
6,816 KB
testcase_04 AC 267 ms
6,816 KB
testcase_05 AC 241 ms
6,820 KB
testcase_06 AC 266 ms
6,820 KB
testcase_07 AC 212 ms
6,820 KB
testcase_08 AC 266 ms
6,820 KB
testcase_09 AC 239 ms
6,816 KB
testcase_10 AC 526 ms
47,556 KB
testcase_11 AC 484 ms
46,840 KB
testcase_12 AC 486 ms
46,888 KB
testcase_13 AC 479 ms
45,276 KB
testcase_14 AC 480 ms
44,536 KB
testcase_15 AC 483 ms
44,820 KB
testcase_16 AC 445 ms
27,540 KB
testcase_17 AC 492 ms
48,584 KB
testcase_18 AC 485 ms
44,712 KB
testcase_19 AC 504 ms
48,668 KB
testcase_20 AC 399 ms
48,824 KB
testcase_21 AC 402 ms
48,856 KB
testcase_22 AC 406 ms
48,908 KB
testcase_23 AC 404 ms
48,936 KB
testcase_24 AC 409 ms
48,828 KB
testcase_25 AC 340 ms
48,800 KB
testcase_26 AC 349 ms
48,932 KB
testcase_27 AC 335 ms
48,908 KB
testcase_28 AC 335 ms
48,792 KB
testcase_29 AC 331 ms
48,836 KB
testcase_30 AC 576 ms
48,884 KB
testcase_31 AC 576 ms
48,836 KB
testcase_32 AC 576 ms
48,832 KB
testcase_33 AC 580 ms
48,824 KB
testcase_34 AC 578 ms
48,948 KB
testcase_35 AC 652 ms
48,760 KB
testcase_36 AC 650 ms
48,772 KB
testcase_37 AC 203 ms
6,816 KB
testcase_38 AC 212 ms
6,816 KB
testcase_39 AC 216 ms
6,816 KB
testcase_40 AC 211 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/segtree>

const int inf = 1e9;

struct S{
    int D[4][4];
    //j < i となるようなところは使わないので未定義になっている
    S() { //単位元
        for (int i = 0; i < 4; i++) {
            for (int j = i; j < 4; j++) D[i][j] = 0;
        }
    }
    S(int x) {
        for (int i = 0; i < 4; i++) {
            for (int j = i; j < 4; j++) {
                if (i <= x and x <= j) D[i][j] = 0; //変更の必要はない
                else D[i][j] = 1; //変更の必要がある
            }
        }
    } 
};

S op(S L, S R) {
    S LR; //L + R
    for (int i = 0; i < 4; i++) {
        for (int j = i; j < 4; j++) {
            LR.D[i][j] = inf;
            for (int k = i; k <= j; k++) LR.D[i][j] = min(LR.D[i][j], L.D[i][k] + R.D[k][j]);
        }
    }
    return LR;
}
S e() {
    return S();
}

int main() {
    int N, Q; cin >> N >> Q;
    string T; cin >> T; //本来はSだが、衝突するのでTとした。
    vector<S> A(N);
    for (int i = 0; i < N; i++) A[i] = S(T[i] - 'A');
    atcoder::segtree<S, op, e> seg(A);
    for (int i = 0; i < Q; i++) {
        int q; cin >> q;
        if (q == 1) {
            int x; char c; cin >> x >> c;
            x--;
            seg.set(x, S(c-'A'));
        }
        else {
            int L, R; cin >> L >> R;
            L--;
            S F = seg.prod(L, R);
            int ans = inf;
            for (int i = 0; i < 4; i++) {
                for (int j = i; j < 4; j++) ans = min(ans, F.D[i][j]);
            }
            cout << ans << endl;
        }
    }
}
0