結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-17 01:40:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 6,000 ms
コード長 617 bytes
コンパイル時間 3,428 ms
コンパイル使用メモリ 253,524 KB
実行使用メモリ 48,948 KB
最終ジャッジ日時 2024-12-17 01:41:07
合計ジャッジ時間 22,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
6,820 KB
testcase_01 AC 229 ms
6,816 KB
testcase_02 AC 258 ms
6,816 KB
testcase_03 AC 242 ms
6,820 KB
testcase_04 AC 256 ms
6,820 KB
testcase_05 AC 235 ms
6,816 KB
testcase_06 AC 250 ms
6,816 KB
testcase_07 AC 210 ms
6,816 KB
testcase_08 AC 284 ms
6,820 KB
testcase_09 AC 239 ms
6,816 KB
testcase_10 AC 489 ms
47,548 KB
testcase_11 AC 477 ms
46,780 KB
testcase_12 AC 510 ms
46,876 KB
testcase_13 AC 479 ms
45,276 KB
testcase_14 AC 482 ms
44,612 KB
testcase_15 AC 501 ms
44,996 KB
testcase_16 AC 451 ms
27,480 KB
testcase_17 AC 502 ms
48,468 KB
testcase_18 AC 488 ms
44,616 KB
testcase_19 AC 538 ms
48,696 KB
testcase_20 AC 409 ms
48,856 KB
testcase_21 AC 404 ms
48,768 KB
testcase_22 AC 395 ms
48,828 KB
testcase_23 AC 403 ms
48,768 KB
testcase_24 AC 426 ms
48,772 KB
testcase_25 AC 321 ms
48,884 KB
testcase_26 AC 320 ms
48,908 KB
testcase_27 AC 319 ms
48,768 KB
testcase_28 AC 332 ms
48,948 KB
testcase_29 AC 351 ms
48,836 KB
testcase_30 AC 576 ms
48,840 KB
testcase_31 AC 559 ms
48,936 KB
testcase_32 AC 562 ms
48,876 KB
testcase_33 AC 586 ms
48,832 KB
testcase_34 AC 567 ms
48,928 KB
testcase_35 AC 631 ms
48,904 KB
testcase_36 AC 657 ms
48,792 KB
testcase_37 AC 204 ms
6,816 KB
testcase_38 AC 204 ms
6,820 KB
testcase_39 AC 210 ms
6,816 KB
testcase_40 AC 213 ms
6,816 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;}};
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