結果

問題 No.2992 Range ABCD String Query
ユーザー t98slidert98slider
提出日時 2024-12-17 02:57:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 333 ms / 6,000 ms
コード長 1,361 bytes
コンパイル時間 4,692 ms
コンパイル使用メモリ 267,284 KB
実行使用メモリ 48,876 KB
最終ジャッジ日時 2024-12-17 02:57:50
合計ジャッジ時間 16,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
6,816 KB
testcase_01 AC 73 ms
6,816 KB
testcase_02 AC 90 ms
6,820 KB
testcase_03 AC 82 ms
6,820 KB
testcase_04 AC 95 ms
6,820 KB
testcase_05 AC 77 ms
6,816 KB
testcase_06 AC 89 ms
6,816 KB
testcase_07 AC 58 ms
6,820 KB
testcase_08 AC 96 ms
6,816 KB
testcase_09 AC 80 ms
6,820 KB
testcase_10 AC 331 ms
47,580 KB
testcase_11 AC 313 ms
46,772 KB
testcase_12 AC 301 ms
47,052 KB
testcase_13 AC 292 ms
45,276 KB
testcase_14 AC 321 ms
44,560 KB
testcase_15 AC 298 ms
44,920 KB
testcase_16 AC 276 ms
27,380 KB
testcase_17 AC 322 ms
48,404 KB
testcase_18 AC 325 ms
44,540 KB
testcase_19 AC 318 ms
48,692 KB
testcase_20 AC 225 ms
48,824 KB
testcase_21 AC 223 ms
48,768 KB
testcase_22 AC 235 ms
48,668 KB
testcase_23 AC 219 ms
48,812 KB
testcase_24 AC 222 ms
48,836 KB
testcase_25 AC 281 ms
48,792 KB
testcase_26 AC 289 ms
48,732 KB
testcase_27 AC 317 ms
48,752 KB
testcase_28 AC 290 ms
48,660 KB
testcase_29 AC 290 ms
48,828 KB
testcase_30 AC 283 ms
48,732 KB
testcase_31 AC 289 ms
48,864 KB
testcase_32 AC 279 ms
48,824 KB
testcase_33 AC 280 ms
48,724 KB
testcase_34 AC 290 ms
48,724 KB
testcase_35 AC 333 ms
48,876 KB
testcase_36 AC 330 ms
48,812 KB
testcase_37 AC 49 ms
6,816 KB
testcase_38 AC 52 ms
6,816 KB
testcase_39 AC 58 ms
6,820 KB
testcase_40 AC 59 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using S = array<array<int,4>,4>;
constexpr S e(){ return S(); }
S op(S lhs, S rhs){
    S tmp = e();
    for(int i = 0; i < 4; i++){
        for(int j = i; j < 4; j++){
            for(int k = j; k < 4; k++){
                tmp[i][k] = max(tmp[i][k], lhs[i][j] + rhs[j][k]);
            }
        }
    }
    return tmp;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, Q;
    string s;
    cin >> n >> Q >> s;
    array<S, 4> tb{{}};
    for(int i = 0; i < 4; i++){
        for(int j = 0; j < 4; j++){
            for(int k = j; k < 4; k++){
                tb[i][j][k] = j <= i && i <= k;
            }
        }
    }
    vector<S> tmp(n);
    for(int i = 0; i < n; i++) tmp[i] = tb[s[i] - 'A'];
    atcoder::segtree<S, op, e> seg(tmp);
    while(Q--){
        int cmd;
        cin >> cmd;
        if(cmd == 1){
            int x;
            char c;
            cin >> x >> c;
            seg.set(x - 1, tb[c - 'A']);
        }else{
            int l, r, mx = 0;
            cin >> l >> r;
            l--;
            auto A = seg.prod(l, r);
            for(int i = 0; i < 4; i++){
                for(int j = i; j < 4; j++){
                    mx = max(mx, A[i][j]);
                }
            }
            cout << r - l - mx << '\n';
        }
    }
}
0