結果

問題 No.2992 Range ABCD String Query
ユーザー ooaiuooaiu
提出日時 2024-12-18 11:45:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 541 ms / 6,000 ms
コード長 1,556 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 253,400 KB
実行使用メモリ 48,828 KB
最終ジャッジ日時 2024-12-18 11:45:57
合計ジャッジ時間 19,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
6,816 KB
testcase_01 AC 80 ms
6,820 KB
testcase_02 AC 97 ms
6,816 KB
testcase_03 AC 92 ms
6,820 KB
testcase_04 AC 103 ms
6,820 KB
testcase_05 AC 84 ms
6,816 KB
testcase_06 AC 101 ms
6,816 KB
testcase_07 AC 64 ms
6,820 KB
testcase_08 AC 107 ms
6,816 KB
testcase_09 AC 89 ms
6,816 KB
testcase_10 AC 472 ms
47,468 KB
testcase_11 AC 478 ms
46,684 KB
testcase_12 AC 454 ms
46,784 KB
testcase_13 AC 430 ms
45,116 KB
testcase_14 AC 439 ms
44,404 KB
testcase_15 AC 431 ms
44,724 KB
testcase_16 AC 381 ms
27,284 KB
testcase_17 AC 516 ms
48,360 KB
testcase_18 AC 418 ms
44,560 KB
testcase_19 AC 521 ms
48,636 KB
testcase_20 AC 396 ms
48,696 KB
testcase_21 AC 409 ms
48,664 KB
testcase_22 AC 429 ms
48,672 KB
testcase_23 AC 397 ms
48,664 KB
testcase_24 AC 399 ms
48,772 KB
testcase_25 AC 504 ms
48,724 KB
testcase_26 AC 468 ms
48,728 KB
testcase_27 AC 496 ms
48,748 KB
testcase_28 AC 467 ms
48,828 KB
testcase_29 AC 463 ms
48,664 KB
testcase_30 AC 486 ms
48,664 KB
testcase_31 AC 454 ms
48,684 KB
testcase_32 AC 481 ms
48,680 KB
testcase_33 AC 456 ms
48,664 KB
testcase_34 AC 457 ms
48,680 KB
testcase_35 AC 541 ms
48,684 KB
testcase_36 AC 507 ms
48,684 KB
testcase_37 AC 51 ms
6,816 KB
testcase_38 AC 57 ms
6,816 KB
testcase_39 AC 64 ms
6,816 KB
testcase_40 AC 67 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
constexpr int inf = 1e9;
constexpr int M = 4;
using S = array<array<int, M>, M>;
S e() {
    return S{};
}
S op(S a, S b) {
    S res;
    for(int i = 0; i < M; i++) for(int j = 0; j < M; j++) res[i][j] = inf;
    for (int i = 0; i < M; i++) {
        for (int j = i; j < M; j++) {
            for (int k = i; k <= j; k++) {
                res[i][j] = min(res[i][j], a[i][k] + b[k][j]);
            }
        }
    }
    return res;
}
S mk(int t) {
    S res = e();
    for(int i = 0; i < M; i++) {
        for(int j = i; j < M; j++) {
            if(i <= t && t <= j) res[i][j] = 0;
            else res[i][j] = 1;
        }
    }
    return res;
}
void solve() {
    int N, Q; cin >> N >> Q;
    string T; cin >> T;
    atcoder::segtree<S, op, e> seg(N);
    for(int i = 0; i < N; i++) seg.set(i, mk(T[i] - 'A'));
    while(Q--) {
        int t; cin >> t;
        if(t == 1) {
            int p; char c; cin >> p >> c;
            seg.set(--p, mk(c - 'A'));
        } else {
            int l, r; cin >> l >> r;
            l--;
            S res = seg.prod(l, r);
            int ans = inf;
            for(int i = 0; i < M; i++) for(int j = i; j < M; j++) ans = min(ans, res[i][j]);
            cout << ans << '\n';
        }
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0