結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 23:09:13
言語 PyPy3
(7.3.15)
結果
AC  
(最新)
TLE  
(最初)
実行時間 4,211 ms / 6,000 ms
コード長 2,134 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 270,740 KB
最終ジャッジ日時 2024-12-16 23:45:04
合計ジャッジ時間 107,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 702 ms
90,116 KB
testcase_01 AC 671 ms
89,096 KB
testcase_02 AC 877 ms
92,252 KB
testcase_03 AC 884 ms
90,540 KB
testcase_04 AC 915 ms
92,596 KB
testcase_05 AC 839 ms
90,644 KB
testcase_06 AC 841 ms
90,988 KB
testcase_07 AC 455 ms
87,760 KB
testcase_08 AC 1,012 ms
92,800 KB
testcase_09 AC 752 ms
89,664 KB
testcase_10 AC 3,753 ms
269,424 KB
testcase_11 AC 3,593 ms
269,244 KB
testcase_12 AC 3,682 ms
268,704 KB
testcase_13 AC 3,670 ms
270,116 KB
testcase_14 AC 3,622 ms
269,616 KB
testcase_15 AC 3,784 ms
270,032 KB
testcase_16 AC 3,400 ms
266,384 KB
testcase_17 AC 3,689 ms
269,980 KB
testcase_18 AC 3,638 ms
270,140 KB
testcase_19 AC 3,978 ms
269,956 KB
testcase_20 AC 2,874 ms
269,836 KB
testcase_21 AC 2,831 ms
270,080 KB
testcase_22 AC 2,819 ms
270,372 KB
testcase_23 AC 2,814 ms
270,384 KB
testcase_24 AC 2,849 ms
269,960 KB
testcase_25 AC 4,185 ms
270,488 KB
testcase_26 AC 4,150 ms
270,332 KB
testcase_27 AC 4,182 ms
270,740 KB
testcase_28 AC 4,211 ms
270,492 KB
testcase_29 AC 4,174 ms
270,708 KB
testcase_30 AC 3,124 ms
214,636 KB
testcase_31 AC 3,070 ms
214,112 KB
testcase_32 AC 3,154 ms
214,108 KB
testcase_33 AC 3,263 ms
213,596 KB
testcase_34 AC 3,178 ms
214,356 KB
testcase_35 AC 3,118 ms
174,884 KB
testcase_36 AC 3,063 ms
174,760 KB
testcase_37 AC 279 ms
85,752 KB
testcase_38 AC 380 ms
86,976 KB
testcase_39 AC 485 ms
87,644 KB
testcase_40 AC 494 ms
87,400 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:
        l,r = int(x)-1,int(c)
        res = st.prod(l,r)
        ans.append(min(res))

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