結果

問題 No.2992 Range ABCD String Query
ユーザー makichanmakichan
提出日時 2024-12-17 00:55:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 626 ms / 6,000 ms
コード長 1,293 bytes
コンパイル時間 5,783 ms
コンパイル使用メモリ 313,284 KB
実行使用メモリ 48,996 KB
最終ジャッジ日時 2024-12-17 00:55:30
合計ジャッジ時間 25,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
6,820 KB
testcase_01 AC 130 ms
6,816 KB
testcase_02 AC 155 ms
6,816 KB
testcase_03 AC 167 ms
6,820 KB
testcase_04 AC 156 ms
6,820 KB
testcase_05 AC 132 ms
6,816 KB
testcase_06 AC 146 ms
6,816 KB
testcase_07 AC 110 ms
6,820 KB
testcase_08 AC 154 ms
6,816 KB
testcase_09 AC 140 ms
6,820 KB
testcase_10 AC 570 ms
47,388 KB
testcase_11 AC 533 ms
46,888 KB
testcase_12 AC 576 ms
47,004 KB
testcase_13 AC 513 ms
45,272 KB
testcase_14 AC 533 ms
44,544 KB
testcase_15 AC 497 ms
45,004 KB
testcase_16 AC 521 ms
27,544 KB
testcase_17 AC 563 ms
48,612 KB
testcase_18 AC 488 ms
44,704 KB
testcase_19 AC 609 ms
48,812 KB
testcase_20 AC 469 ms
48,968 KB
testcase_21 AC 495 ms
48,828 KB
testcase_22 AC 475 ms
48,996 KB
testcase_23 AC 492 ms
48,972 KB
testcase_24 AC 476 ms
48,924 KB
testcase_25 AC 538 ms
48,932 KB
testcase_26 AC 575 ms
48,924 KB
testcase_27 AC 534 ms
48,884 KB
testcase_28 AC 553 ms
48,924 KB
testcase_29 AC 555 ms
48,884 KB
testcase_30 AC 553 ms
48,952 KB
testcase_31 AC 547 ms
48,800 KB
testcase_32 AC 577 ms
48,836 KB
testcase_33 AC 561 ms
48,944 KB
testcase_34 AC 587 ms
48,948 KB
testcase_35 AC 600 ms
48,920 KB
testcase_36 AC 626 ms
48,940 KB
testcase_37 AC 100 ms
6,820 KB
testcase_38 AC 111 ms
6,816 KB
testcase_39 AC 112 ms
6,816 KB
testcase_40 AC 111 ms
6,816 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(){
    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