結果

問題 No.2992 Range ABCD String Query
ユーザー titiatitia
提出日時 2024-12-17 07:51:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,553 ms / 6,000 ms
コード長 2,263 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 138,672 KB
最終ジャッジ日時 2024-12-17 07:54:33
合計ジャッジ時間 141,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,037 ms
86,472 KB
testcase_01 AC 957 ms
86,096 KB
testcase_02 AC 1,696 ms
86,268 KB
testcase_03 AC 1,119 ms
87,092 KB
testcase_04 AC 1,489 ms
86,604 KB
testcase_05 AC 1,081 ms
86,384 KB
testcase_06 AC 1,305 ms
86,556 KB
testcase_07 AC 585 ms
85,456 KB
testcase_08 AC 1,490 ms
86,616 KB
testcase_09 AC 1,091 ms
85,824 KB
testcase_10 AC 4,482 ms
130,736 KB
testcase_11 AC 4,393 ms
131,044 KB
testcase_12 AC 4,350 ms
130,472 KB
testcase_13 AC 5,082 ms
130,176 KB
testcase_14 AC 4,985 ms
129,864 KB
testcase_15 AC 4,172 ms
130,584 KB
testcase_16 AC 4,824 ms
110,196 KB
testcase_17 AC 5,262 ms
130,424 KB
testcase_18 AC 4,317 ms
130,288 KB
testcase_19 AC 4,426 ms
130,508 KB
testcase_20 AC 3,240 ms
129,420 KB
testcase_21 AC 3,791 ms
129,624 KB
testcase_22 AC 3,765 ms
129,576 KB
testcase_23 AC 3,802 ms
129,496 KB
testcase_24 AC 3,756 ms
129,700 KB
testcase_25 AC 5,364 ms
121,600 KB
testcase_26 AC 4,458 ms
121,516 KB
testcase_27 AC 5,343 ms
121,728 KB
testcase_28 AC 4,380 ms
121,472 KB
testcase_29 AC 5,354 ms
121,788 KB
testcase_30 AC 4,839 ms
138,312 KB
testcase_31 AC 4,968 ms
138,004 KB
testcase_32 AC 4,794 ms
137,944 KB
testcase_33 AC 4,838 ms
138,156 KB
testcase_34 AC 5,553 ms
138,672 KB
testcase_35 AC 4,028 ms
137,976 KB
testcase_36 AC 4,046 ms
137,992 KB
testcase_37 AC 441 ms
84,652 KB
testcase_38 AC 538 ms
85,064 KB
testcase_39 AC 607 ms
85,200 KB
testcase_40 AC 703 ms
86,076 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*(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*10:i*10+10]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i*10:i*10+10]=seg_function(SEG[i*2*10:i*2*10+10],SEG[(i*2+1)*10:(i*2+1)*10+10])
        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*10:L*10+10])
            L+=1

        if R & 1:
            R-=1
            ANS2=seg_function(SEG[R*10:R*10+10], ANS2)
        L>>=1
        R>>=1

    return seg_function(ANS1, ANS2)

S=input().strip()

for i in range(N): # Aを対応する箇所へupdate
    SEG[(i+seg_el)*10:(i+seg_el)*10+10]=AX[S[i]-65]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i*10:i*10+10]=seg_function(SEG[i*2*10:i*2*10+10],SEG[(i*2+1)*10:(i*2+1)*10+10])

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