結果

問題 No.2992 Range ABCD String Query
ユーザー hiro1729hiro1729
提出日時 2024-12-16 22:24:14
言語 PyPy3
(7.3.15)
結果
AC  
(最新)
TLE  
(最初)
実行時間 5,385 ms / 6,000 ms
コード長 1,934 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 281,768 KB
最終ジャッジ日時 2024-12-16 23:59:43
合計ジャッジ時間 107,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 941 ms
96,304 KB
testcase_01 AC 907 ms
94,516 KB
testcase_02 AC 1,465 ms
103,500 KB
testcase_03 AC 1,207 ms
98,332 KB
testcase_04 AC 1,560 ms
106,100 KB
testcase_05 AC 995 ms
96,136 KB
testcase_06 AC 1,407 ms
102,700 KB
testcase_07 AC 428 ms
85,128 KB
testcase_08 AC 1,566 ms
105,528 KB
testcase_09 AC 1,110 ms
97,728 KB
testcase_10 AC 5,347 ms
280,580 KB
testcase_11 AC 5,285 ms
280,504 KB
testcase_12 AC 5,047 ms
279,368 KB
testcase_13 AC 5,187 ms
280,296 KB
testcase_14 AC 5,211 ms
279,944 KB
testcase_15 AC 4,453 ms
273,584 KB
testcase_16 AC 4,600 ms
248,748 KB
testcase_17 AC 4,677 ms
279,860 KB
testcase_18 AC 4,960 ms
280,068 KB
testcase_19 AC 5,385 ms
280,952 KB
testcase_20 AC 1,701 ms
225,056 KB
testcase_21 AC 1,742 ms
226,012 KB
testcase_22 AC 1,709 ms
225,824 KB
testcase_23 AC 1,657 ms
221,668 KB
testcase_24 AC 1,706 ms
224,688 KB
testcase_25 AC 2,190 ms
280,388 KB
testcase_26 AC 2,190 ms
280,372 KB
testcase_27 AC 2,203 ms
280,740 KB
testcase_28 AC 2,193 ms
281,768 KB
testcase_29 AC 2,168 ms
281,392 KB
testcase_30 AC 3,532 ms
192,044 KB
testcase_31 AC 3,995 ms
202,612 KB
testcase_32 AC 3,304 ms
190,328 KB
testcase_33 AC 3,952 ms
200,032 KB
testcase_34 AC 3,444 ms
193,116 KB
testcase_35 AC 1,202 ms
132,872 KB
testcase_36 AC 1,209 ms
133,004 KB
testcase_37 AC 148 ms
79,360 KB
testcase_38 AC 304 ms
82,632 KB
testcase_39 AC 447 ms
86,204 KB
testcase_40 AC 528 ms
89,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import defaultdict

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)

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 = defaultdict(tuple)
d['A'] = [0, 0, 0, 0, 1, 1, 1, 1, 1, 1]
d['B'] = [1, 0, 0, 0, 0, 0, 0, 1, 1, 1]
d['C'] = [1, 1, 0, 0, 1, 0, 0, 0, 0, 1]
d['D'] = [1, 1, 1, 0, 1, 1, 0, 1, 0, 0]

N, Q = map(int, input().split())
S = input()
v = [d[S[i]] for i in range(N)]
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[b[0]])
	else:
		a = int(a) - 1
		b = int(b) - 1
		print(seg.prod(a, b + 1)[3])
0