結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 11:32:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,366 ms / 6,000 ms
コード長 2,199 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 297,876 KB
最終ジャッジ日時 2024-12-16 23:39:22
合計ジャッジ時間 110,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 677 ms
87,224 KB
testcase_01 AC 715 ms
87,856 KB
testcase_02 AC 856 ms
88,492 KB
testcase_03 AC 887 ms
87,772 KB
testcase_04 AC 900 ms
91,468 KB
testcase_05 AC 850 ms
87,656 KB
testcase_06 AC 844 ms
88,540 KB
testcase_07 AC 448 ms
84,568 KB
testcase_08 AC 991 ms
92,128 KB
testcase_09 AC 818 ms
87,764 KB
testcase_10 AC 3,933 ms
272,424 KB
testcase_11 AC 3,959 ms
272,480 KB
testcase_12 AC 3,853 ms
271,328 KB
testcase_13 AC 3,864 ms
271,172 KB
testcase_14 AC 3,769 ms
269,884 KB
testcase_15 AC 4,030 ms
272,304 KB
testcase_16 AC 3,605 ms
267,536 KB
testcase_17 AC 3,946 ms
276,184 KB
testcase_18 AC 3,832 ms
269,604 KB
testcase_19 AC 4,202 ms
276,840 KB
testcase_20 AC 2,954 ms
280,608 KB
testcase_21 AC 2,950 ms
279,880 KB
testcase_22 AC 2,938 ms
280,352 KB
testcase_23 AC 2,944 ms
280,240 KB
testcase_24 AC 2,948 ms
280,324 KB
testcase_25 AC 4,298 ms
297,704 KB
testcase_26 AC 4,325 ms
297,224 KB
testcase_27 AC 4,366 ms
297,744 KB
testcase_28 AC 4,345 ms
297,672 KB
testcase_29 AC 4,316 ms
297,876 KB
testcase_30 AC 3,140 ms
241,492 KB
testcase_31 AC 3,137 ms
240,800 KB
testcase_32 AC 3,159 ms
241,288 KB
testcase_33 AC 3,200 ms
240,280 KB
testcase_34 AC 3,171 ms
241,308 KB
testcase_35 AC 3,107 ms
200,200 KB
testcase_36 AC 3,116 ms
200,308 KB
testcase_37 AC 287 ms
83,284 KB
testcase_38 AC 449 ms
85,076 KB
testcase_39 AC 477 ms
84,924 KB
testcase_40 AC 451 ms
84,068 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
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 = [inf]*16
    for i in range(4):
        for j in range(i,4):
            if i <= c <= j:
                A[(i<<2)+j] = 0
            else:
                A[(i<<2)+j] = 1
    D.append(A)

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

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

for _ in range(Q):
    t,x,c = input().split()
    
    if t == "1":
        x = int(x)-1
        c = alp[c]
        
        A = [inf]*16
        for i in range(4):
            for j in range(i,4):
                if i <= c <= j:
                    A[(i<<2)+j] = 0
                else:
                    A[(i<<2)+j] = 1
        st.set(x,A)
        
    else:
        l,r = int(x)-1,int(c)
        res = st.prod(l,r)
        print(min(res))
0