結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 23:10:39
言語 PyPy3
(7.3.15)
結果
AC  
(最新)
MLE  
(最初)
実行時間 5,834 ms / 6,000 ms
コード長 2,134 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 271,264 KB
最終ジャッジ日時 2024-12-16 23:47:15
合計ジャッジ時間 144,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 833 ms
90,380 KB
testcase_01 AC 788 ms
89,228 KB
testcase_02 AC 1,080 ms
92,632 KB
testcase_03 AC 1,085 ms
90,800 KB
testcase_04 AC 1,129 ms
92,720 KB
testcase_05 AC 1,011 ms
90,512 KB
testcase_06 AC 1,052 ms
91,380 KB
testcase_07 AC 564 ms
87,624 KB
testcase_08 AC 1,254 ms
93,556 KB
testcase_09 AC 947 ms
89,664 KB
testcase_10 AC 5,003 ms
269,712 KB
testcase_11 AC 5,092 ms
268,696 KB
testcase_12 AC 5,146 ms
268,408 KB
testcase_13 AC 5,093 ms
270,144 KB
testcase_14 AC 5,056 ms
269,940 KB
testcase_15 AC 5,203 ms
269,936 KB
testcase_16 AC 4,634 ms
266,400 KB
testcase_17 AC 5,522 ms
269,636 KB
testcase_18 AC 5,073 ms
269,820 KB
testcase_19 AC 5,543 ms
269,740 KB
testcase_20 AC 3,880 ms
269,524 KB
testcase_21 AC 3,879 ms
270,108 KB
testcase_22 AC 3,820 ms
270,220 KB
testcase_23 AC 3,797 ms
270,396 KB
testcase_24 AC 3,897 ms
269,892 KB
testcase_25 AC 5,798 ms
271,012 KB
testcase_26 AC 5,834 ms
270,332 KB
testcase_27 AC 5,829 ms
271,164 KB
testcase_28 AC 5,671 ms
271,264 KB
testcase_29 AC 5,814 ms
270,968 KB
testcase_30 AC 4,150 ms
214,620 KB
testcase_31 AC 4,101 ms
213,852 KB
testcase_32 AC 4,162 ms
213,860 KB
testcase_33 AC 4,282 ms
214,248 KB
testcase_34 AC 4,182 ms
214,364 KB
testcase_35 AC 4,129 ms
175,148 KB
testcase_36 AC 4,224 ms
174,756 KB
testcase_37 AC 350 ms
85,788 KB
testcase_38 AC 467 ms
86,852 KB
testcase_39 AC 593 ms
87,740 KB
testcase_40 AC 609 ms
87,892 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}

p = [0,3,5,6]
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[p[i]+j] = 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[p[i]+j] = min(X[p[i]+k]+Y[p[k]+j],res[p[i]+j]) 
    return res

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

ans = []
for _ in range(Q):
    t,x,c = input().split()
    if t == "1":
        x = int(x)-1
        c = alp[c]
        A = [1]*10
        for i in range(4):
            for j in range(i,4):
                if i <= c <= j:
                    A[p[i]+j] = 0
        st.set(x,A)
    else:
        x,c = int(x)-1,int(c)
        res = st.prod(x,c)
        ans.append(min(res))

print(*ans, sep = "\n")
0