結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-15 23:14:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 866 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 250,744 KB
実行使用メモリ 21,344 KB
最終ジャッジ日時 2024-12-16 23:49:45
合計ジャッジ時間 163,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
19,808 KB
testcase_01 AC 234 ms
19,328 KB
testcase_02 AC 312 ms
19,312 KB
testcase_03 AC 262 ms
18,016 KB
testcase_04 AC 374 ms
17,224 KB
testcase_05 AC 243 ms
17,832 KB
testcase_06 AC 300 ms
16,680 KB
testcase_07 AC 209 ms
20,776 KB
testcase_08 AC 406 ms
17,448 KB
testcase_09 AC 249 ms
21,036 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 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 112 ms
14,444 KB
testcase_26 AC 114 ms
14,380 KB
testcase_27 AC 112 ms
14,352 KB
testcase_28 AC 113 ms
14,352 KB
testcase_29 AC 111 ms
14,492 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 207 ms
6,820 KB
testcase_38 AC 212 ms
6,824 KB
testcase_39 AC 211 ms
6,820 KB
testcase_40 AC 224 ms
20,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long

int main() {
    int N, Q; cin >> N >> Q;
    string S; cin >> S;
    while(Q--) {
        int q; cin >> q;
        if (q == 1) {
            int x; char c; cin >> x >> c;
            x--;
            S[x] = c;
        }
        else {
            int l, r; cin >> l >> r;
            l--;
            vector<vector<int>> dp(r-l+1, vector<int>(4, N+1));
            dp[0][0] = 0;
            rep(i, 0, r-l) {
                rep(j, 0, 4) {
                    rep(k, j, 4) {
                        dp[i+1][k] = min(dp[i+1][k], dp[i][j] + (S[l+i]-'A' == k? 0 : 1));
                    }
                }
            }
            cout << min(min(dp.back()[0], dp.back()[1]), min(dp.back()[2], dp.back()[3])) << endl;
        }
    }
}
0