結果
問題 | No.776 A Simple RMQ Problem |
ユーザー | maspy |
提出日時 | 2020-05-01 12:15:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,613 ms / 3,000 ms |
コード長 | 2,660 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 168,060 KB |
最終ジャッジ日時 | 2024-06-06 05:56:52 |
合計ジャッジ時間 | 46,910 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,500 KB |
testcase_01 | AC | 37 ms
53,792 KB |
testcase_02 | AC | 654 ms
92,868 KB |
testcase_03 | AC | 1,414 ms
126,420 KB |
testcase_04 | AC | 1,485 ms
122,800 KB |
testcase_05 | AC | 2,246 ms
155,168 KB |
testcase_06 | AC | 1,126 ms
107,496 KB |
testcase_07 | AC | 1,718 ms
136,220 KB |
testcase_08 | AC | 1,852 ms
133,604 KB |
testcase_09 | AC | 882 ms
111,980 KB |
testcase_10 | AC | 1,436 ms
117,236 KB |
testcase_11 | AC | 1,966 ms
146,628 KB |
testcase_12 | AC | 2,299 ms
160,628 KB |
testcase_13 | AC | 2,207 ms
158,560 KB |
testcase_14 | AC | 2,211 ms
159,740 KB |
testcase_15 | AC | 2,297 ms
161,368 KB |
testcase_16 | AC | 2,316 ms
160,484 KB |
testcase_17 | AC | 2,613 ms
137,336 KB |
testcase_18 | AC | 1,873 ms
168,060 KB |
testcase_19 | AC | 1,550 ms
149,396 KB |
testcase_20 | AC | 1,640 ms
137,148 KB |
testcase_21 | AC | 1,524 ms
150,248 KB |
testcase_22 | AC | 1,516 ms
135,100 KB |
testcase_23 | AC | 2,398 ms
149,608 KB |
testcase_24 | AC | 1,761 ms
138,472 KB |
testcase_25 | AC | 105 ms
87,040 KB |
testcase_26 | AC | 1,652 ms
163,180 KB |
testcase_27 | AC | 1,475 ms
165,236 KB |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines class SegTree: def __init__(self, N, X_f, X_unit, X_commutative=False): self.N = N self.X_f = X_f self.X_unit = X_unit self.X = [self.X_unit] * (N + N) if X_commutative: self.fold = self._fold_commutative def build(self, seq): for i, x in enumerate(seq, self.N): self.X[i] = x for i in range(self.N - 1, 0, -1): self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1]) def set_val(self, i, x): i += self.N self.X[i] = x while i > 1: i >>= 1 self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1]) def fold(self, L, R): L += self.N R += self.N vL = vR = self.X_unit while L < R: if L & 1: vL = self.X_f(vL, self.X[L]) L += 1 if R & 1: R -= 1 vR = self.X_f(self.X[R], vR) L >>= 1 R >>= 1 return self.X_f(vL, vR) def _fold_commutative(self, L, R): L += self.N R += self.N v = self.X_unit while L < R: if L & 1: v = self.X_f(v, self.X[L]) L += 1 if R & 1: R -= 1 v = self.X_f(v, self.X[R]) L >>= 1 R >>= 1 return v X_unit = None def X_f(x, y): if x is None: return y if y is None: return x return (max(x[0], y[0], x[2] + y[1]), max(x[1], x[3] + y[1]), max(y[2], x[2] + y[3]), x[3] + y[3]) N, Q = map(int, readline().split()) A = map(int, readline().split()) seg = SegTree(N, X_f, X_unit) seg.build((x, x, x, x) for x in A) def range_max(L1, L2, R1, R2): R1 = max(L1, R1) L2 = min(L2, R2) if L2 < R1: mid = 0 if R1 == L2 + 1 else seg.fold(L2 + 1, R1)[3] return seg.fold(L1, L2 + 1)[2] + mid + seg.fold(R1, R2 + 1)[1] ret = -10**18 # R1 より左に左端がある if L1 < R1: ret = max(ret, seg.fold(L1, R1)[2] + seg.fold(R1, R2 + 1)[1]) # L2 以前に右端がある ret = max(ret, seg.fold(R1, L2 + 1)[0]) # L2 より右に右端がある if L2 < R2: ret = max(ret, seg.fold(R1, L2 + 1)[2] + seg.fold(L2 + 1, R2 + 1)[1]) return ret for query in readlines(): if query.startswith(b's'): i, x = map(int, query[4:].split()) seg.set_val(i - 1, (x, x, x, x)) else: print(range_max(*map(lambda x: int(x) - 1, query[4:].split())))