結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 12:40:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,256 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 279,828 KB
最終ジャッジ日時 2024-12-16 23:45:23
合計ジャッジ時間 116,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 3,206 ms
198,560 KB
testcase_36 AC 3,196 ms
198,688 KB
testcase_37 AC 332 ms
110,888 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, op, e, lst):
        self.n = len(lst)
        self.N0 = 2 ** (self.n - 1).bit_length()
        self.op = op
        self.e = e
        self.data = [e] * (2 * self.N0)
        if type(lst) is list:
            for i in range(self.n):
                self.data[self.N0 + i] = lst[i]
            for i in range(self.N0 - 1, 0, -1):
                self.data[i] = self.op(self.data[2*i], self.data[2*i+1])
    
    def get(self, i):
        return self.data[self.N0+i]
    
    def set(self, i, x):
        i += self.N0
        self.data[i] = x
        while i > 1:
            i >>= 1
            self.data[i] = self.op(self.data[2*i], self.data[2*i+1])
    
    def prod(self, l, r):
        if r <= l:
            return self.e
        lres = self.e
        rres = self.e
        l += self.N0
        r += self.N0
        while l < r:
            if l & 1:
                lres = self.op(lres, self.data[l])
                l += 1
            if r & 1:
                r -= 1
                rres = self.op(self.data[r], rres)
            l >>= 1
            r >>= 1
        return self.op(lres, rres)

import sys
input = sys.stdin.readline

inf = 10**6
size = 4
N,Q = map(int, input().split())
S = input()
alp = {"A":0,"B":1,"C":2,"D":3}
D = []
for i in range(N):
    c = alp[S[i]]
    A = [1]*10
    #(0,0-3),(1,1-3)
    for i in range(4):
        for j in range(i,4):
            if i <= c <= j:
                A[((j*(j+1))>>1)+i] = 0
    D.append(A)

def op(X,Y):
    res = [inf]*10
    for i in range(4):
        for j in range(i,4):
            for k in range(i,j+1):
                res[((j*(j+1))>>1)+i] = min(X[((k*(k+1))>>1)+i]+Y[((j*(j+1))>>1)+k],res[((j*(j+1))>>1)+i]) 
    return res

e = [0]*10
st = SegTree(op, e, D)

qry = []
for _ in range(Q):
    t,x,c = input().split()
    t = int(t)
    x = int(x)-1
    if t == 1:
        c = alp[c]
    else:
        c = int(c)
    qry.append((t,x,c))

ans = []
for t,x,c in qry:
    if t == 1:
        A = [inf]*10
        for i in range(4):
            for j in range(i,4):
                if i <= c <= j:
                    A[((j*(j+1))>>1)+i] = 0
        st.set(x,A)
    else:
        res = st.prod(x,c)
        ans.append(min(res))
print(*ans, sep = "\n")
0