結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 10:30:21
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 2,571 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 703,028 KB
最終ジャッジ日時 2024-12-16 23:34:36
合計ジャッジ時間 189,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 1,022 ms
89,740 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 1,155 ms
83,696 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 5,481 ms
415,640 KB
testcase_31 AC 5,382 ms
413,700 KB
testcase_32 AC 5,614 ms
413,496 KB
testcase_33 AC 5,175 ms
410,980 KB
testcase_34 AC 5,635 ms
414,808 KB
testcase_35 AC 5,200 ms
313,256 KB
testcase_36 AC 5,215 ms
313,140 KB
testcase_37 AC 559 ms
78,756 KB
testcase_38 AC 756 ms
80,916 KB
testcase_39 AC 1,016 ms
84,812 KB
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, op, e, lst):
        if type(lst) is int:
            self.n = lst 
        else:
            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)

inf = 1<<60
N,Q = map(int, input().split())
S = input()

def make_matrix(c):
    x = ord(c) - ord("A")
    A = [[inf]*4 for i in range(4)]
    for i in range(4):
        for j in range(i,4):
            if i <= x <= j:
                A[i][j] = 0
            else:
                A[i][j] = 1
    return A

D = []
for i in range(N):
    D.append(make_matrix(S[i]))

def op(X,Y):
    res = [[inf]*4 for i in range(4)]
    for i in range(4):
        for j in range(i,4):
            for k in range(i,j+1):
                res[i][j] = min(X[i][k]+Y[k][j], res[i][j]) 
    return res
e = [[0]*4 for i in range(4)]
st = SegTree(op, e, D)

for _ in range(Q):
    t,x,c = input().split()
    
    if t == "1":
        x = int(x)-1
        st.set(x,make_matrix(c))
    else:
        l,r = int(x)-1,int(c)
        res = st.prod(l,r)
        
        ans = inf
        for i in range(4):
            ans = min(ans,min(res[i]))
        print(ans)
0