結果
問題 | No.2992 Range ABCD String Query |
ユーザー | lif4635 |
提出日時 | 2024-12-15 10:34:09 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,571 bytes |
コンパイル時間 | 495 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 683,764 KB |
最終ジャッジ日時 | 2024-12-16 23:36:44 |
合計ジャッジ時間 | 193,085 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 1,081 ms
89,740 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | AC | 1,053 ms
92,396 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 5,553 ms
415,772 KB |
testcase_31 | AC | 5,521 ms
413,968 KB |
testcase_32 | AC | 5,617 ms
413,232 KB |
testcase_33 | AC | 5,447 ms
412,000 KB |
testcase_34 | AC | 5,943 ms
415,448 KB |
testcase_35 | AC | 5,422 ms
313,148 KB |
testcase_36 | AC | 5,451 ms
313,516 KB |
testcase_37 | AC | 583 ms
78,380 KB |
testcase_38 | AC | 786 ms
80,540 KB |
testcase_39 | AC | 1,047 ms
84,808 KB |
testcase_40 | MLE | - |
ソースコード
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) inf = 1<<60 N,Q = map(int, input().split()) S = input() def make_matrix(c): x = ord(c) - ord("A") A = [[inf]*4 for i in range(4)] for i in range(4): for j in range(i,4): if i <= x <= j: A[i][j] = 0 else: A[i][j] = 1 return A D = [] for i in range(N): D.append(make_matrix(S[i])) def op(X,Y): res = [[inf]*4 for i in range(4)] for i in range(4): for j in range(i,4): for k in range(i,j+1): res[i][j] = min(X[i][k]+Y[k][j], res[i][j]) return res e = [[0]*4 for i in range(4)] 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) ans = inf for i in range(4): ans = min(ans,min(res[i])) print(ans)