結果

問題 No.2992 Range ABCD String Query
ユーザー makichanmakichan
提出日時 2024-12-17 00:36:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 641 ms / 6,000 ms
コード長 1,360 bytes
コンパイル時間 6,283 ms
コンパイル使用メモリ 313,228 KB
実行使用メモリ 48,988 KB
最終ジャッジ日時 2024-12-17 00:37:08
合計ジャッジ時間 26,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
6,816 KB
testcase_01 AC 133 ms
6,816 KB
testcase_02 AC 155 ms
6,820 KB
testcase_03 AC 152 ms
6,820 KB
testcase_04 AC 161 ms
6,816 KB
testcase_05 AC 137 ms
6,820 KB
testcase_06 AC 153 ms
6,820 KB
testcase_07 AC 115 ms
6,820 KB
testcase_08 AC 163 ms
6,816 KB
testcase_09 AC 145 ms
6,820 KB
testcase_10 AC 579 ms
47,564 KB
testcase_11 AC 552 ms
46,880 KB
testcase_12 AC 583 ms
46,964 KB
testcase_13 AC 532 ms
45,420 KB
testcase_14 AC 548 ms
44,640 KB
testcase_15 AC 527 ms
44,916 KB
testcase_16 AC 520 ms
27,324 KB
testcase_17 AC 589 ms
48,440 KB
testcase_18 AC 558 ms
44,716 KB
testcase_19 AC 588 ms
48,776 KB
testcase_20 AC 506 ms
48,924 KB
testcase_21 AC 475 ms
48,988 KB
testcase_22 AC 474 ms
48,836 KB
testcase_23 AC 502 ms
48,772 KB
testcase_24 AC 472 ms
48,952 KB
testcase_25 AC 560 ms
48,772 KB
testcase_26 AC 589 ms
48,888 KB
testcase_27 AC 556 ms
48,892 KB
testcase_28 AC 554 ms
48,940 KB
testcase_29 AC 545 ms
48,932 KB
testcase_30 AC 553 ms
48,880 KB
testcase_31 AC 522 ms
48,940 KB
testcase_32 AC 556 ms
48,976 KB
testcase_33 AC 528 ms
48,832 KB
testcase_34 AC 558 ms
48,916 KB
testcase_35 AC 622 ms
48,956 KB
testcase_36 AC 641 ms
48,896 KB
testcase_37 AC 105 ms
6,820 KB
testcase_38 AC 108 ms
6,816 KB
testcase_39 AC 115 ms
6,820 KB
testcase_40 AC 117 ms
6,820 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);
        int ans=1e9;
        rep(i,0,4)rep(j,i,4)ans=min(ans,p.a[i][j]);
        out.push_back(ans);
    }
    for(auto x:out)cout << x << "\n";
}
0