結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-17 01:26:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 832 ms / 6,000 ms
コード長 934 bytes
コンパイル時間 3,275 ms
コンパイル使用メモリ 252,200 KB
実行使用メモリ 48,896 KB
最終ジャッジ日時 2024-12-17 01:27:37
合計ジャッジ時間 26,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
5,248 KB
testcase_01 AC 273 ms
5,248 KB
testcase_02 AC 297 ms
5,248 KB
testcase_03 AC 283 ms
5,248 KB
testcase_04 AC 299 ms
5,248 KB
testcase_05 AC 273 ms
5,248 KB
testcase_06 AC 294 ms
5,248 KB
testcase_07 AC 249 ms
5,248 KB
testcase_08 AC 301 ms
5,248 KB
testcase_09 AC 275 ms
5,248 KB
testcase_10 AC 641 ms
47,616 KB
testcase_11 AC 636 ms
46,720 KB
testcase_12 AC 637 ms
46,976 KB
testcase_13 AC 620 ms
45,324 KB
testcase_14 AC 630 ms
44,616 KB
testcase_15 AC 621 ms
45,000 KB
testcase_16 AC 591 ms
27,392 KB
testcase_17 AC 654 ms
48,512 KB
testcase_18 AC 611 ms
44,484 KB
testcase_19 AC 641 ms
48,820 KB
testcase_20 AC 510 ms
48,896 KB
testcase_21 AC 506 ms
48,768 KB
testcase_22 AC 518 ms
48,768 KB
testcase_23 AC 514 ms
48,768 KB
testcase_24 AC 542 ms
48,896 KB
testcase_25 AC 476 ms
48,768 KB
testcase_26 AC 467 ms
48,796 KB
testcase_27 AC 472 ms
48,768 KB
testcase_28 AC 461 ms
48,768 KB
testcase_29 AC 458 ms
48,768 KB
testcase_30 AC 660 ms
48,896 KB
testcase_31 AC 671 ms
48,768 KB
testcase_32 AC 658 ms
48,768 KB
testcase_33 AC 674 ms
48,768 KB
testcase_34 AC 665 ms
48,768 KB
testcase_35 AC 832 ms
48,832 KB
testcase_36 AC 814 ms
48,768 KB
testcase_37 AC 232 ms
5,248 KB
testcase_38 AC 247 ms
5,248 KB
testcase_39 AC 246 ms
5,248 KB
testcase_40 AC 244 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/segtree>
#define q int
#define c(i,v,n)for(q i=v;i<n;i++)
struct S{q D[4][4];S(){c(i,0,4)c(j,0,4)D[i][j]=0;}S(q x){c(i,0,4)c(j,0,4)D[i][j]=(i<=x&&x<=j?0:1);}};
// S o(S L,S R){S K;c(i,0,4)c(j,i,4)c(k,i,j+1){K.D[i][j]=1e9;K.D[i][j]=min(K.D[i][j],L.D[i][k]+R.D[k][j]);}return K;}
S o(S L, S R) {
    S LR; //L + R
    for (int i = 0; i < 4; i++) {
        for (int j = i; j < 4; j++) {
            LR.D[i][j] = 1e9;
            for (int k = i; k <= j; k++) LR.D[i][j] = min(LR.D[i][j], L.D[i][k] + R.D[k][j]);
        }
    }
    return LR;
}
S e(){return S();}
int main() {
    q N,Q,p,l;string T;cin>>N>>Q>>T;
    vector<S>A(N);c(i,0,N)A[i]=S(T[i]-'A');
    atcoder::segtree<S,o,e>g(A);
    while(Q--){
    	cin>>p;
    	if(--p){
    		cin>>p>>l;
    		cout<<g.prod(p-1,l).D[0][3]<<endl;
    	}
    	else {
    		char c;cin>>l>>c;
    		g.set(l-1,S(c-'A'));
    	}
    }
}
0