結果
問題 | No.2992 Range ABCD String Query |
ユーザー | lif4635 |
提出日時 | 2024-12-15 11:38:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,266 bytes |
コンパイル時間 | 404 ms |
コンパイル使用メモリ | 82,604 KB |
実行使用メモリ | 389,152 KB |
最終ジャッジ日時 | 2024-12-16 23:42:10 |
合計ジャッジ時間 | 224,582 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,147 ms
122,944 KB |
testcase_01 | AC | 2,110 ms
378,868 KB |
testcase_02 | AC | 2,890 ms
387,812 KB |
testcase_03 | AC | 2,573 ms
389,152 KB |
testcase_04 | AC | 3,212 ms
137,484 KB |
testcase_05 | AC | 2,374 ms
387,140 KB |
testcase_06 | AC | 2,818 ms
130,756 KB |
testcase_07 | AC | 1,343 ms
381,560 KB |
testcase_08 | AC | 3,264 ms
138,800 KB |
testcase_09 | AC | 2,356 ms
385,420 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 807 ms
111,664 KB |
testcase_38 | AC | 1,011 ms
112,692 KB |
testcase_39 | AC | 1,380 ms
113,440 KB |
testcase_40 | AC | 1,459 ms
325,152 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 size = 4 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*size+j] = 0 else: A[i*size+j] = 1 D.append(A) def op(X,Y): res = [inf]*16 for i in range(4): for j in range(i,4): res[i*size+j] = min(X[i*size+k]+Y[k*size+j] for k in range(i,j+1)) return res e = [0]*16 st = SegTree(op, e, D) qry = [] for _ in range(Q): t,x,c = input().split() t = int(t) x = int(x)-1 if t == 1: c = alp[c] else: c = int(c) qry.append((t,x,c)) ans = [] for t,x,c in qry: if t == 1: A = [inf]*16 for i in range(4): for j in range(i,4): if i <= c <= j: A[i*size+j] = 0 else: A[i*size+j] = 1 st.set(x,A) else: res = st.prod(x,c) ans.append(min(res)) print(*ans, sep = "\n")