結果
問題 | No.2992 Range ABCD String Query |
ユーザー | lif4635 |
提出日時 | 2024-12-17 01:19:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 5,021 ms / 6,000 ms |
コード長 | 2,230 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 270,448 KB |
最終ジャッジ日時 | 2024-12-17 01:21:53 |
合計ジャッジ時間 | 129,207 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 826 ms
89,484 KB |
testcase_01 | AC | 778 ms
89,068 KB |
testcase_02 | AC | 1,020 ms
90,784 KB |
testcase_03 | AC | 1,053 ms
89,964 KB |
testcase_04 | AC | 1,138 ms
91,636 KB |
testcase_05 | AC | 972 ms
89,668 KB |
testcase_06 | AC | 1,035 ms
91,200 KB |
testcase_07 | AC | 559 ms
87,996 KB |
testcase_08 | AC | 1,208 ms
92,344 KB |
testcase_09 | AC | 892 ms
89,908 KB |
testcase_10 | AC | 4,447 ms
270,116 KB |
testcase_11 | AC | 4,516 ms
270,448 KB |
testcase_12 | AC | 4,499 ms
269,516 KB |
testcase_13 | AC | 4,220 ms
262,304 KB |
testcase_14 | AC | 4,206 ms
262,156 KB |
testcase_15 | AC | 4,389 ms
262,244 KB |
testcase_16 | AC | 3,909 ms
237,524 KB |
testcase_17 | AC | 4,826 ms
268,068 KB |
testcase_18 | AC | 4,419 ms
261,472 KB |
testcase_19 | AC | 4,796 ms
267,648 KB |
testcase_20 | AC | 3,381 ms
265,712 KB |
testcase_21 | AC | 3,438 ms
267,012 KB |
testcase_22 | AC | 3,423 ms
267,148 KB |
testcase_23 | AC | 3,353 ms
267,128 KB |
testcase_24 | AC | 3,340 ms
266,376 KB |
testcase_25 | AC | 4,891 ms
267,548 KB |
testcase_26 | AC | 5,021 ms
267,328 KB |
testcase_27 | AC | 4,972 ms
267,784 KB |
testcase_28 | AC | 4,940 ms
267,268 KB |
testcase_29 | AC | 4,990 ms
267,428 KB |
testcase_30 | AC | 3,949 ms
181,348 KB |
testcase_31 | AC | 3,943 ms
180,704 KB |
testcase_32 | AC | 3,917 ms
180,864 KB |
testcase_33 | AC | 4,040 ms
180,476 KB |
testcase_34 | AC | 3,865 ms
181,772 KB |
testcase_35 | AC | 3,754 ms
143,460 KB |
testcase_36 | AC | 3,734 ms
143,352 KB |
testcase_37 | AC | 427 ms
86,400 KB |
testcase_38 | AC | 534 ms
87,112 KB |
testcase_39 | AC | 575 ms
87,880 KB |
testcase_40 | AC | 626 ms
87,932 KB |
ソースコード
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) 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 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 N,Q = map(int, input().split()) S = input() alp = {"A":0,"B":1,"C":2,"D":3} da = [0, 0, 0, 0, 1, 1, 1, 1, 1, 1] db = [1, 0, 0, 0, 0, 0, 0, 1, 1, 1] dc = [1, 1, 0, 0, 1, 0, 0, 0, 0, 1] dd = [1, 1, 1, 0, 1, 1, 0, 1, 0, 0] p = [0,3,5,6] D = [] for i in S: if i == "A": D.append(da) elif i == "B": D.append(db) elif i == "C": D.append(dc) else: D.append(dd) def op(X,Y): res = [inf]*10 for i in range(4): for j in range(i,4): for k in range(i,j+1): res[p[i]+j] = min(X[p[i]+k]+Y[p[k]+j],res[p[i]+j]) return res e = [0]*10 st = SegTree(op, e, D) ans = [] for _ in range(Q): t,x,c = input().split() if t == "1": x = int(x)-1 if c == "A": st.set(x,da) elif c == "B": st.set(x,db) elif c == "C": st.set(x,dc) else: st.set(x,dd) else: x,c = int(x)-1,int(c) res = st.prod(x,c) ans.append(min(res)) print(*ans, sep = "\n")