結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-15 10:47:39
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,533 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 297,612 KB
最終ジャッジ日時 2024-12-16 23:33:13
合計ジャッジ時間 148,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 827 ms
87,516 KB
testcase_01 AC 801 ms
86,508 KB
testcase_02 AC 1,059 ms
89,032 KB
testcase_03 AC 1,055 ms
87,660 KB
testcase_04 AC 1,138 ms
91,372 KB
testcase_05 AC 983 ms
87,012 KB
testcase_06 AC 1,034 ms
88,936 KB
testcase_07 AC 577 ms
84,756 KB
testcase_08 AC 1,229 ms
91,572 KB
testcase_09 AC 921 ms
88,924 KB
testcase_10 AC 5,439 ms
271,724 KB
testcase_11 AC 5,145 ms
271,424 KB
testcase_12 AC 5,308 ms
271,776 KB
testcase_13 AC 5,467 ms
271,776 KB
testcase_14 AC 5,231 ms
271,912 KB
testcase_15 AC 5,079 ms
271,328 KB
testcase_16 AC 4,666 ms
267,664 KB
testcase_17 AC 5,247 ms
275,768 KB
testcase_18 AC 5,036 ms
271,076 KB
testcase_19 AC 5,271 ms
276,888 KB
testcase_20 AC 3,922 ms
278,932 KB
testcase_21 AC 3,929 ms
279,852 KB
testcase_22 AC 4,055 ms
279,716 KB
testcase_23 AC 4,058 ms
279,536 KB
testcase_24 AC 4,085 ms
279,864 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 4,561 ms
246,892 KB
testcase_31 AC 4,528 ms
246,396 KB
testcase_32 AC 4,136 ms
247,136 KB
testcase_33 AC 4,005 ms
246,268 KB
testcase_34 AC 4,202 ms
246,660 KB
testcase_35 AC 4,391 ms
203,088 KB
testcase_36 AC 4,332 ms
203,732 KB
testcase_37 AC 369 ms
82,792 KB
testcase_38 AC 495 ms
83,892 KB
testcase_39 AC 620 ms
85,212 KB
testcase_40 AC 605 ms
84,832 KB
権限があれば一括ダウンロードができます

ソースコード

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)

import sys
input = sys.stdin.readline

inf = 10**6
size = 4

N,Q = map(int, input().split())
S = input()[:N]
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