結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
5,248 KB
testcase_01 AC 264 ms
5,248 KB
testcase_02 AC 294 ms
5,248 KB
testcase_03 AC 278 ms
5,248 KB
testcase_04 AC 298 ms
5,248 KB
testcase_05 AC 276 ms
5,248 KB
testcase_06 AC 289 ms
5,248 KB
testcase_07 AC 246 ms
5,248 KB
testcase_08 AC 303 ms
5,248 KB
testcase_09 AC 280 ms
5,248 KB
testcase_10 AC 641 ms
47,488 KB
testcase_11 AC 640 ms
46,720 KB
testcase_12 AC 644 ms
46,848 KB
testcase_13 AC 616 ms
45,348 KB
testcase_14 AC 620 ms
44,480 KB
testcase_15 AC 618 ms
44,800 KB
testcase_16 AC 589 ms
27,336 KB
testcase_17 AC 657 ms
48,512 KB
testcase_18 AC 631 ms
44,544 KB
testcase_19 AC 649 ms
48,640 KB
testcase_20 AC 506 ms
48,768 KB
testcase_21 AC 507 ms
48,896 KB
testcase_22 AC 503 ms
48,896 KB
testcase_23 AC 511 ms
48,768 KB
testcase_24 AC 514 ms
48,768 KB
testcase_25 AC 450 ms
48,896 KB
testcase_26 AC 450 ms
48,896 KB
testcase_27 AC 449 ms
48,768 KB
testcase_28 AC 451 ms
48,768 KB
testcase_29 AC 455 ms
48,768 KB
testcase_30 AC 673 ms
48,768 KB
testcase_31 AC 670 ms
48,856 KB
testcase_32 AC 668 ms
48,768 KB
testcase_33 AC 665 ms
48,888 KB
testcase_34 AC 662 ms
48,768 KB
testcase_35 AC 826 ms
48,768 KB
testcase_36 AC 832 ms
48,768 KB
testcase_37 AC 231 ms
5,248 KB
testcase_38 AC 239 ms
5,248 KB
testcase_39 AC 252 ms
5,248 KB
testcase_40 AC 246 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){K.D[i][j]=1e9;c(k,i,j+1)K.D[i][j]=min(K.D[i][j],L.D[i][k]+R.D[k][j]);}return K;}
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