結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 12:41:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,194 ms / 6,000 ms
コード長 2,254 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 280,640 KB
最終ジャッジ日時 2024-12-16 23:46:38
合計ジャッジ時間 107,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 707 ms
113,856 KB
testcase_01 AC 658 ms
113,908 KB
testcase_02 AC 880 ms
115,872 KB
testcase_03 AC 768 ms
115,048 KB
testcase_04 AC 933 ms
116,636 KB
testcase_05 AC 755 ms
112,468 KB
testcase_06 AC 839 ms
115,288 KB
testcase_07 AC 496 ms
112,412 KB
testcase_08 AC 1,062 ms
116,580 KB
testcase_09 AC 826 ms
113,828 KB
testcase_10 AC 3,784 ms
267,616 KB
testcase_11 AC 3,741 ms
267,380 KB
testcase_12 AC 3,808 ms
267,408 KB
testcase_13 AC 3,685 ms
268,380 KB
testcase_14 AC 3,582 ms
267,656 KB
testcase_15 AC 3,717 ms
267,392 KB
testcase_16 AC 3,564 ms
265,412 KB
testcase_17 AC 4,083 ms
268,980 KB
testcase_18 AC 3,743 ms
267,400 KB
testcase_19 AC 4,021 ms
269,004 KB
testcase_20 AC 2,820 ms
269,148 KB
testcase_21 AC 2,848 ms
268,972 KB
testcase_22 AC 2,858 ms
269,508 KB
testcase_23 AC 2,817 ms
269,572 KB
testcase_24 AC 2,839 ms
268,832 KB
testcase_25 AC 4,133 ms
279,720 KB
testcase_26 AC 4,173 ms
279,568 KB
testcase_27 AC 4,189 ms
279,576 KB
testcase_28 AC 4,139 ms
279,616 KB
testcase_29 AC 4,194 ms
280,640 KB
testcase_30 AC 3,132 ms
236,516 KB
testcase_31 AC 3,100 ms
236,252 KB
testcase_32 AC 3,171 ms
236,424 KB
testcase_33 AC 3,129 ms
236,508 KB
testcase_34 AC 3,156 ms
237,268 KB
testcase_35 AC 3,131 ms
198,556 KB
testcase_36 AC 3,112 ms
198,304 KB
testcase_37 AC 326 ms
110,764 KB
testcase_38 AC 425 ms
112,052 KB
testcase_39 AC 503 ms
111,648 KB
testcase_40 AC 478 ms
112,816 KB
権限があれば一括ダウンロードができます

ソースコード

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 = [1]*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