結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-15 23:13:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 866 bytes
コンパイル時間 2,693 ms
コンパイル使用メモリ 251,272 KB
実行使用メモリ 21,312 KB
最終ジャッジ日時 2024-12-16 23:49:24
合計ジャッジ時間 163,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
10,624 KB
testcase_01 AC 222 ms
18,232 KB
testcase_02 AC 309 ms
17,760 KB
testcase_03 AC 257 ms
17,740 KB
testcase_04 AC 374 ms
10,624 KB
testcase_05 AC 233 ms
16,444 KB
testcase_06 AC 298 ms
15,784 KB
testcase_07 AC 202 ms
16,136 KB
testcase_08 AC 397 ms
15,244 KB
testcase_09 AC 246 ms
19,332 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 110 ms
14,336 KB
testcase_26 AC 110 ms
14,208 KB
testcase_27 AC 108 ms
14,336 KB
testcase_28 AC 109 ms
14,336 KB
testcase_29 AC 111 ms
14,336 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 200 ms
5,248 KB
testcase_38 AC 197 ms
5,248 KB
testcase_39 AC 203 ms
5,248 KB
testcase_40 AC 207 ms
19,020 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