結果
問題 | No.2992 Range ABCD String Query |
ユーザー | titia |
提出日時 | 2024-12-17 07:32:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,096 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 539,428 KB |
最終ジャッジ日時 | 2024-12-17 07:35:37 |
合計ジャッジ時間 | 169,419 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,031 ms
85,184 KB |
testcase_01 | AC | 929 ms
85,892 KB |
testcase_02 | AC | 1,642 ms
85,976 KB |
testcase_03 | AC | 1,113 ms
85,500 KB |
testcase_04 | AC | 1,413 ms
86,660 KB |
testcase_05 | AC | 1,041 ms
84,780 KB |
testcase_06 | AC | 1,266 ms
85,996 KB |
testcase_07 | AC | 601 ms
84,196 KB |
testcase_08 | AC | 1,438 ms
86,280 KB |
testcase_09 | AC | 1,052 ms
85,160 KB |
testcase_10 | AC | 5,609 ms
268,368 KB |
testcase_11 | AC | 5,572 ms
267,900 KB |
testcase_12 | AC | 5,595 ms
268,560 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 5,407 ms
268,892 KB |
testcase_16 | AC | 5,815 ms
251,976 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 5,495 ms
268,204 KB |
testcase_19 | AC | 5,755 ms
268,344 KB |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | AC | 4,681 ms
269,944 KB |
testcase_23 | AC | 4,734 ms
269,276 KB |
testcase_24 | AC | 4,667 ms
269,348 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 5,896 ms
270,980 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 5,350 ms
243,872 KB |
testcase_31 | AC | 5,407 ms
243,880 KB |
testcase_32 | AC | 5,316 ms
243,396 KB |
testcase_33 | AC | 5,264 ms
243,912 KB |
testcase_34 | TLE | - |
testcase_35 | AC | 4,934 ms
209,832 KB |
testcase_36 | AC | 4,849 ms
210,364 KB |
testcase_37 | AC | 441 ms
83,296 KB |
testcase_38 | AC | 530 ms
84,108 KB |
testcase_39 | AC | 610 ms
84,044 KB |
testcase_40 | AC | 752 ms
84,892 KB |
ソースコード
import sys input = sys.stdin.readline N,Q=map(int,input().split()) C=[[0,0],[0,1],[0,2],[0,3],[1,1],[1,2],[1,3],[2,2],[2,3],[3,3]] AA=[(0, 0), (0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6), (0, 7), (0, 8), (0, 9), (1, 4), (1, 5), (1, 6), (1, 7), (1, 8), (1, 9), (2, 7), (2, 8), (2, 9), (3, 9), (4, 4), (4, 5), (4, 6), (4, 7), (4, 8), (4, 9), (5, 7), (5, 8), (5, 9), (6, 9), (7, 7), (7, 8), (7, 9), (8, 9), (9, 9)] AX=[[0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 1, 0, 0, 1, 0, 0, 0, 0, 1], [1, 1, 1, 0, 1, 1, 0, 1, 0, 0]] LIST=[[-1]*4 for i in range(4)] for i in range(len(C)): x,y=C[i] LIST[x][y]=i def seg_function(x,y): # Segment treeで扱うfunction ANS=[1<<30]*10 for i,j in AA: a,b=C[i] c,d=C[j] if b<=c: k=LIST[a][d] ANS[k]=min(ANS[k],x[i]+y[j]) return ANS seg_el=1<<(N.bit_length()) # Segment treeの台の要素数 SEG=[[1<<30]*10 for i in range(2*seg_el)] # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化 def update(n,x,seg_el): # A[n]をxへ更新 i=n+seg_el SEG[i]=x i>>=1 # 子ノードへ while i!=0: SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) i>>=1 def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる L=l+seg_el R=r+seg_el ANS1=[0]*10 ANS2=[0]*10 while L<R: if L & 1: ANS1=seg_function(ANS1, SEG[L]) L+=1 if R & 1: R-=1 ANS2=seg_function(SEG[R], ANS2) L>>=1 R>>=1 return seg_function(ANS1, ANS2) S=input().strip() for i in range(N): # Aを対応する箇所へupdate SEG[i+seg_el]=AX[ord(S[i])-65] for i in range(seg_el-1,0,-1): # 親の部分もupdate SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) LANS=[] for tests in range(Q): x,y,z=input().split() if int(x)==1: y=int(y)-1 update(y,AX[ord(z)-65],seg_el) else: ANS=getvalues(int(y)-1,int(z)) LANS.append(ANS[3]) print("\n".join(map(str,LANS)))