結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
5,248 KB
testcase_01 AC 72 ms
5,248 KB
testcase_02 AC 87 ms
5,248 KB
testcase_03 AC 85 ms
5,248 KB
testcase_04 AC 93 ms
5,248 KB
testcase_05 AC 77 ms
5,248 KB
testcase_06 AC 95 ms
5,248 KB
testcase_07 AC 60 ms
5,248 KB
testcase_08 AC 94 ms
5,248 KB
testcase_09 AC 78 ms
5,248 KB
testcase_10 AC 501 ms
47,352 KB
testcase_11 AC 438 ms
46,720 KB
testcase_12 AC 461 ms
46,848 KB
testcase_13 AC 472 ms
45,312 KB
testcase_14 AC 403 ms
44,520 KB
testcase_15 AC 398 ms
44,928 KB
testcase_16 AC 402 ms
27,264 KB
testcase_17 AC 572 ms
48,512 KB
testcase_18 AC 434 ms
44,544 KB
testcase_19 AC 489 ms
48,720 KB
testcase_20 AC 381 ms
48,768 KB
testcase_21 AC 406 ms
48,640 KB
testcase_22 AC 366 ms
48,768 KB
testcase_23 AC 385 ms
48,768 KB
testcase_24 AC 419 ms
48,768 KB
testcase_25 AC 470 ms
48,768 KB
testcase_26 AC 488 ms
48,768 KB
testcase_27 AC 457 ms
48,768 KB
testcase_28 AC 484 ms
48,640 KB
testcase_29 AC 499 ms
48,768 KB
testcase_30 AC 398 ms
48,768 KB
testcase_31 AC 400 ms
48,768 KB
testcase_32 AC 434 ms
48,768 KB
testcase_33 AC 400 ms
48,768 KB
testcase_34 AC 431 ms
48,768 KB
testcase_35 AC 478 ms
48,768 KB
testcase_36 AC 529 ms
48,888 KB
testcase_37 AC 55 ms
5,248 KB
testcase_38 AC 54 ms
5,248 KB
testcase_39 AC 59 ms
5,248 KB
testcase_40 AC 60 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]));

    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);
        cout << p.a[0][3] << "\n";
    }
}
0