結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 11:01:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,623 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-12-16 23:33:00
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 update(self, i, x): #a_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 add(self, i, x):
        i += self.N0
        self.data[i] = self.op(x, self.data[i])
        while i > 1:
            i >>= 1
            self.data[i] = self.op(self.data[2*i], self.data[2*i+1])
    
    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.buffer.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[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
        st.set(x,A)
    else:
        l,r = int(x)-1,int(c)
        res = st.prod(l,r)
        
        print(min(res))
0