結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 23:25:52
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,942 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 297,876 KB
最終ジャッジ日時 2024-12-17 00:14:47
合計ジャッジ時間 154,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 896 ms
88,224 KB
testcase_01 AC 842 ms
87,408 KB
testcase_02 AC 1,101 ms
89,108 KB
testcase_03 AC 1,100 ms
88,028 KB
testcase_04 AC 1,236 ms
91,372 KB
testcase_05 AC 1,046 ms
87,140 KB
testcase_06 AC 1,127 ms
89,304 KB
testcase_07 AC 622 ms
85,244 KB
testcase_08 AC 1,332 ms
92,504 KB
testcase_09 AC 1,016 ms
88,468 KB
testcase_10 AC 5,914 ms
272,100 KB
testcase_11 AC 5,405 ms
271,684 KB
testcase_12 AC 5,568 ms
271,864 KB
testcase_13 AC 5,550 ms
271,940 KB
testcase_14 AC 5,542 ms
272,080 KB
testcase_15 AC 5,491 ms
271,408 KB
testcase_16 AC 4,960 ms
267,456 KB
testcase_17 AC 5,505 ms
275,260 KB
testcase_18 AC 5,189 ms
270,632 KB
testcase_19 AC 5,463 ms
276,408 KB
testcase_20 AC 4,213 ms
279,720 KB
testcase_21 AC 4,329 ms
279,900 KB
testcase_22 AC 4,346 ms
279,788 KB
testcase_23 AC 4,217 ms
279,928 KB
testcase_24 AC 4,118 ms
280,004 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 4,510 ms
247,264 KB
testcase_31 AC 4,552 ms
246,044 KB
testcase_32 AC 4,355 ms
246,716 KB
testcase_33 AC 4,237 ms
246,508 KB
testcase_34 AC 4,443 ms
246,596 KB
testcase_35 AC 4,511 ms
203,284 KB
testcase_36 AC 4,465 ms
204,060 KB
testcase_37 AC 372 ms
82,804 KB
testcase_38 AC 518 ms
83,548 KB
testcase_39 AC 649 ms
85,052 KB
testcase_40 AC 617 ms
85,176 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)
        
        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 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}

def make_matrix(c):
    x = alp[c]
    A = [inf]*16
    for i in range(4):
        for j in range(i,4):
            if i <= x <= j:
                A[i*size+j] = 0
            else:
                A[i*size+j] = 1
    return A

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

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*size+j] = min(X[i*size+k]+Y[k*size+j], res[i*size+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
        st.set(x,make_matrix(c))
    else:
        l,r = int(x)-1,int(c)
        res = st.prod(l,r)
        
        print(min(res))
0