結果

問題 No.2992 Range ABCD String Query
ユーザー lif4635lif4635
提出日時 2024-12-16 22:27:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,919 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 369,044 KB
最終ジャッジ日時 2024-12-17 00:02:17
合計ジャッジ時間 140,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,167 ms
95,028 KB
testcase_01 AC 1,159 ms
94,892 KB
testcase_02 AC 1,803 ms
105,412 KB
testcase_03 AC 1,475 ms
99,488 KB
testcase_04 AC 1,952 ms
106,876 KB
testcase_05 AC 1,226 ms
95,880 KB
testcase_06 AC 1,737 ms
104,128 KB
testcase_07 AC 534 ms
85,660 KB
testcase_08 AC 1,985 ms
106,872 KB
testcase_09 AC 1,391 ms
98,276 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 5,900 ms
274,352 KB
testcase_16 AC 5,999 ms
249,972 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,387 ms
226,584 KB
testcase_21 AC 2,426 ms
223,588 KB
testcase_22 AC 2,460 ms
225,880 KB
testcase_23 AC 2,402 ms
222,484 KB
testcase_24 AC 2,451 ms
224,700 KB
testcase_25 AC 3,191 ms
282,160 KB
testcase_26 AC 3,194 ms
282,620 KB
testcase_27 AC 3,057 ms
282,760 KB
testcase_28 AC 3,067 ms
279,804 KB
testcase_29 AC 3,052 ms
283,188 KB
testcase_30 AC 4,536 ms
193,436 KB
testcase_31 AC 5,194 ms
203,888 KB
testcase_32 AC 4,138 ms
191,768 KB
testcase_33 AC 4,818 ms
199,864 KB
testcase_34 AC 4,287 ms
196,296 KB
testcase_35 AC 1,664 ms
133,176 KB
testcase_36 AC 1,682 ms
132,660 KB
testcase_37 AC 187 ms
79,360 KB
testcase_38 AC 405 ms
83,316 KB
testcase_39 AC 570 ms
85,844 KB
testcase_40 AC 678 ms
369,044 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
from collections import defaultdict
input = sys.stdin.readline

inf = 10**6
def op(l, r):
	return [l[0] + r[0], min(l[0] + r[1], l[1] + r[4]), min(l[0] + r[2], l[1] + r[5], l[2] + r[7]), min(l[0] + r[3], l[1] + r[6], l[2] + r[8], l[3] + r[9]), l[4] + r[4], min(l[4] + r[5], l[5] + r[7]), min(l[4] + r[6], l[5] + r[8], l[6] + r[9]), l[7] + r[7], min(l[7] + r[8], l[8] + r[9]), l[9] + r[9]]

e = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
d = [[0, 0, 0, 0, 1, 1, 1, 1, 1, 1],
          [1, 0, 0, 0, 0, 0, 0, 1, 1, 1],
          [1, 1, 0, 0, 1, 0, 0, 0, 0, 1],
          [1, 1, 1, 0, 1, 1, 0, 1, 0, 0]]

N, Q = map(int, input().split())
S = input()[:N]
v = [d[ord(i)-65] for i in S]
seg = SegTree(op, e, v)
for _ in range(Q):
	t, a, b = input().split()
	if t == '1':
		a = int(a) - 1
		seg.set(a, d[ord(b)-65])
	else:
		a = int(a) - 1
		b = int(b) - 1
		print(seg.prod(a, b + 1)[3])
0