結果

問題 No.2992 Range ABCD String Query
ユーザー titiatitia
提出日時 2024-12-17 07:45:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,136 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 271,584 KB
最終ジャッジ日時 2024-12-17 07:48:16
合計ジャッジ時間 166,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 984 ms
85,940 KB
testcase_01 AC 910 ms
86,728 KB
testcase_02 AC 1,599 ms
87,288 KB
testcase_03 AC 1,095 ms
86,532 KB
testcase_04 AC 1,397 ms
87,552 KB
testcase_05 AC 1,031 ms
86,268 KB
testcase_06 AC 1,246 ms
86,600 KB
testcase_07 AC 588 ms
84,788 KB
testcase_08 AC 1,419 ms
87,332 KB
testcase_09 AC 1,039 ms
85,932 KB
testcase_10 AC 5,604 ms
268,248 KB
testcase_11 AC 5,548 ms
267,136 KB
testcase_12 AC 5,445 ms
267,740 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 5,347 ms
267,684 KB
testcase_16 AC 5,781 ms
252,656 KB
testcase_17 TLE -
testcase_18 AC 5,393 ms
267,472 KB
testcase_19 AC 5,625 ms
268,064 KB
testcase_20 AC 4,098 ms
269,324 KB
testcase_21 AC 4,656 ms
268,648 KB
testcase_22 AC 4,609 ms
269,780 KB
testcase_23 AC 4,686 ms
268,748 KB
testcase_24 AC 4,619 ms
268,564 KB
testcase_25 TLE -
testcase_26 AC 5,869 ms
271,576 KB
testcase_27 TLE -
testcase_28 AC 5,810 ms
271,584 KB
testcase_29 TLE -
testcase_30 AC 5,164 ms
244,360 KB
testcase_31 AC 5,305 ms
243,976 KB
testcase_32 AC 5,142 ms
245,204 KB
testcase_33 AC 5,129 ms
244,656 KB
testcase_34 AC 5,899 ms
244,128 KB
testcase_35 AC 4,716 ms
211,760 KB
testcase_36 AC 4,674 ms
211,796 KB
testcase_37 AC 390 ms
84,328 KB
testcase_38 AC 508 ms
84,752 KB
testcase_39 AC 589 ms
84,944 KB
testcase_40 AC 669 ms
85,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).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[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[z[0]-65],seg_el)
    else:
        ANS=getvalues(int(y)-1,int(z))
        LANS.append(ANS[3])

print("\n".join(map(str,LANS)))
        
0