結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-17 01:33:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 634 ms / 6,000 ms
コード長 565 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 252,268 KB
実行使用メモリ 48,900 KB
最終ジャッジ日時 2024-12-17 01:33:50
合計ジャッジ時間 22,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
6,816 KB
testcase_01 AC 264 ms
6,820 KB
testcase_02 AC 259 ms
6,816 KB
testcase_03 AC 253 ms
6,816 KB
testcase_04 AC 291 ms
6,816 KB
testcase_05 AC 240 ms
6,820 KB
testcase_06 AC 256 ms
6,816 KB
testcase_07 AC 215 ms
6,816 KB
testcase_08 AC 263 ms
6,816 KB
testcase_09 AC 272 ms
6,820 KB
testcase_10 AC 546 ms
47,416 KB
testcase_11 AC 512 ms
46,772 KB
testcase_12 AC 514 ms
46,884 KB
testcase_13 AC 503 ms
45,208 KB
testcase_14 AC 542 ms
44,684 KB
testcase_15 AC 485 ms
44,916 KB
testcase_16 AC 466 ms
27,332 KB
testcase_17 AC 495 ms
48,440 KB
testcase_18 AC 496 ms
44,540 KB
testcase_19 AC 496 ms
48,652 KB
testcase_20 AC 407 ms
48,764 KB
testcase_21 AC 415 ms
48,832 KB
testcase_22 AC 442 ms
48,796 KB
testcase_23 AC 398 ms
48,792 KB
testcase_24 AC 432 ms
48,760 KB
testcase_25 AC 331 ms
48,764 KB
testcase_26 AC 350 ms
48,868 KB
testcase_27 AC 379 ms
48,832 KB
testcase_28 AC 386 ms
48,860 KB
testcase_29 AC 330 ms
48,800 KB
testcase_30 AC 549 ms
48,852 KB
testcase_31 AC 574 ms
48,764 KB
testcase_32 AC 549 ms
48,836 KB
testcase_33 AC 622 ms
48,764 KB
testcase_34 AC 594 ms
48,784 KB
testcase_35 AC 610 ms
48,760 KB
testcase_36 AC 634 ms
48,900 KB
testcase_37 AC 211 ms
6,816 KB
testcase_38 AC 205 ms
6,816 KB
testcase_39 AC 231 ms
6,816 KB
testcase_40 AC 211 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:226: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | 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();}main(){q N,Q,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>>N;if(--N){cin>>N>>l;cout<<g.prod(N-1,l).D[0][3]<<endl;}else{char c;cin>>l>>c;g.set(l-1,S(c-'A'));}}}
      |                                                                                                                                                                                                                                  ^~~~

ソースコード

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();}main(){q N,Q,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>>N;if(--N){cin>>N>>l;cout<<g.prod(N-1,l).D[0][3]<<endl;}else{char c;cin>>l>>c;g.set(l-1,S(c-'A'));}}}
0