結果
問題 | No.2992 Range ABCD String Query |
ユーザー | lif4635 |
提出日時 | 2024-12-15 11:02:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,616 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 82,204 KB |
実行使用メモリ | 297,840 KB |
最終ジャッジ日時 | 2024-12-16 23:37:10 |
合計ジャッジ時間 | 106,703 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 3,143 ms
200,064 KB |
testcase_36 | AC | 3,103 ms
200,264 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | WA | - |
ソースコード
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 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 N,Q = map(int, input().split()) S = input() alp = {"A":0,"B":1,"C":2,"D":3} D = [] for i in range(N): c = alp[S[i]] A = [inf]*16 for i in range(4): for j in range(i,4): if i <= c <= j: A[(i<<2)+j] = 0 else: A[(i<<2)+j] = 1 D.append(A) 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<<2)+j] = min(X[(i<<2)+k]+Y[(k<<2)+j], res[(i<<2)+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 c = alp[S[i]] A = [inf]*16 for i in range(4): for j in range(i,4): if i <= c <= j: A[(i<<2)+j] = 0 else: A[(i<<2)+j] = 1 st.set(x,A) else: l,r = int(x)-1,int(c) res = st.prod(l,r) print(min(res))