結果

問題 No.2992 Range ABCD String Query
ユーザー makichanmakichan
提出日時 2024-12-17 00:56:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 535 ms / 6,000 ms
コード長 1,344 bytes
コンパイル時間 5,983 ms
コンパイル使用メモリ 313,400 KB
実行使用メモリ 48,808 KB
最終ジャッジ日時 2024-12-17 00:56:41
合計ジャッジ時間 22,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
5,248 KB
testcase_01 AC 75 ms
5,248 KB
testcase_02 AC 94 ms
5,248 KB
testcase_03 AC 86 ms
5,248 KB
testcase_04 AC 108 ms
5,248 KB
testcase_05 AC 82 ms
5,248 KB
testcase_06 AC 92 ms
5,248 KB
testcase_07 AC 62 ms
5,248 KB
testcase_08 AC 100 ms
5,248 KB
testcase_09 AC 82 ms
5,248 KB
testcase_10 AC 478 ms
47,360 KB
testcase_11 AC 481 ms
46,720 KB
testcase_12 AC 471 ms
46,976 KB
testcase_13 AC 493 ms
45,248 KB
testcase_14 AC 435 ms
44,512 KB
testcase_15 AC 436 ms
44,800 KB
testcase_16 AC 435 ms
27,364 KB
testcase_17 AC 500 ms
48,512 KB
testcase_18 AC 467 ms
44,544 KB
testcase_19 AC 499 ms
48,724 KB
testcase_20 AC 394 ms
48,732 KB
testcase_21 AC 425 ms
48,768 KB
testcase_22 AC 391 ms
48,768 KB
testcase_23 AC 398 ms
48,808 KB
testcase_24 AC 396 ms
48,768 KB
testcase_25 AC 483 ms
48,640 KB
testcase_26 AC 523 ms
48,768 KB
testcase_27 AC 478 ms
48,768 KB
testcase_28 AC 473 ms
48,768 KB
testcase_29 AC 503 ms
48,768 KB
testcase_30 AC 425 ms
48,768 KB
testcase_31 AC 459 ms
48,640 KB
testcase_32 AC 428 ms
48,640 KB
testcase_33 AC 426 ms
48,768 KB
testcase_34 AC 457 ms
48,640 KB
testcase_35 AC 501 ms
48,640 KB
testcase_36 AC 535 ms
48,640 KB
testcase_37 AC 52 ms
5,248 KB
testcase_38 AC 56 ms
5,248 KB
testcase_39 AC 62 ms
5,248 KB
testcase_40 AC 63 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

struct P{
    int a[4][4];
    P(){
        rep(i,0,4)rep(j,0,4)a[i][j]=0;
    }
};

P convert(char c){
    P z;
    rep(i,0,4)rep(j,i,4){
        if(i<=c-'A' && c-'A'<=j)z.a[i][j]=0;
        else z.a[i][j]=1;
    }
    return z;
}
P op(P x,P y){
    P z;
    rep(i,0,4)rep(j,i,4)z.a[i][j]=1e9;
    rep(i,0,4)rep(j,i,4)rep(k,j,4){
        z.a[i][k]=min(z.a[i][k],x.a[i][j]+y.a[j][k]);
    }
    return z;
}
P e(){return P();}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n,Q;cin >> n >> Q;
    string s;cin >> s;
    
    segtree<P,op,e> seg(n);
    rep(i,0,n)seg.set(i,convert(s[i]));

    vector<int> out;
    rep(q,0,Q){
        int t;cin >> t;
        if(t==1){
            int x;cin >> x;
            char c;cin >> c;
            seg.set(x-1,convert(c));
            continue;
        }
        int l,r;
        cin >> l >> r;
        l--;
        auto p=seg.prod(l,r);
        out.push_back(p.a[0][3]);
    }
    for(auto x:out)cout << x << "\n";
}
0