結果
問題 | No.879 Range Mod 2 Query |
ユーザー | maspy |
提出日時 | 2020-04-30 19:19:52 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,569 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,352 KB |
実行使用メモリ | 208,960 KB |
最終ジャッジ日時 | 2024-05-09 18:39:24 |
合計ジャッジ時間 | 7,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
61,620 KB |
testcase_01 | AC | 171 ms
77,512 KB |
testcase_02 | AC | 210 ms
78,280 KB |
testcase_03 | AC | 216 ms
77,976 KB |
testcase_04 | AC | 235 ms
78,332 KB |
testcase_05 | AC | 152 ms
77,340 KB |
testcase_06 | AC | 99 ms
74,368 KB |
testcase_07 | AC | 212 ms
77,900 KB |
testcase_08 | AC | 235 ms
78,572 KB |
testcase_09 | AC | 133 ms
76,888 KB |
testcase_10 | AC | 156 ms
77,300 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 2,504 ms
161,444 KB |
testcase_13 | AC | 2,784 ms
175,548 KB |
testcase_14 | AC | 2,679 ms
172,776 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines class LazySegTree: def __init__(self, N, X_f, X_unit, A_f, A_unit, operate): self.N = N self.X_f = X_f self.X_unit = X_unit self.A_f = A_f self.A_unit = A_unit self.operate = operate self.X = [self.X_unit] * (N + N) self.A = [self.A_unit] * (N + N) def build(self, seq): for i, x in enumerate(seq, N): self.X[i] = x for i in range(N - 1, 0, -1): self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1]) def _eval_at(self, i): return self.operate(self.X[i], self.A[i]) def _propagate_at(self, i): self.X[i] = self._eval_at(i) self.A[i << 1] = self.A_f(self.A[i << 1], self.A[i]) self.A[i << 1 | 1] = self.A_f(self.A[i << 1 | 1], self.A[i]) self.A[i] = self.A_unit def _propagate_above(self, i): H = i.bit_length() - 1 for h in range(H, 0, -1): self._propagate_at(i >> h) def _recalc_above(self, i): while i > 1: i >>= 1 self.X[i] = self.X_f(self._eval_at(i << 1), self._eval_at(i << 1 | 1)) def set_val(self, i, x): i += self.N self._propagate_above(i) self.X[i] = x self.A[i] = self.A_unit self._recalc_above(i) def operate_range(self, L, R, x): L += self.N R += self.N L0 = L // (L & -L) R0 = R // (R & -R) - 1 self._propagate_above(L0) self._propagate_above(R0) while L < R: if L & 1: self.A[L] = self.A_f(self.A[L], x) L += 1 if R & 1: R -= 1 self.A[R] = self.A_f(self.A[R], x) L >>= 1 R >>= 1 self._recalc_above(L0) self._recalc_above(R0) def fold(self, L, R): L += self.N R += self.N self._propagate_above(L // (L & -L)) self._propagate_above(R // (R & -R) - 1) v = self.X_unit while L < R: if L & 1: v = self.X_f(v, self._eval_at(L)) L += 1 if R & 1: R -= 1 v = self.X_f(self._eval_at(R), v) L >>= 1 R >>= 1 return v X_unit = (0, 0, 0) # even, odd, sum A_unit = (2, 0) def X_f(x, y): return (x[0] + y[0], x[1] + y[1], x[2] + y[2]) def A_f(x, y): if y[0] <= 1: return ((x[0] + x[1] + y[0]) & 1, y[1]) return (x[0], x[1] + y[1]) def operate(x, a): ev, od, su = x t, add = a if t == 2: if add & 1: return (od, ev, su + add * (ev + od)) return (ev, od, su + add * (ev + od)) if t == 1: ev, od = od, ev su = od + add * (ev + od) if add & 1: ev, od = od, ev return (ev, od, su) N, Q = map(int, readline().split()) seg = LazySegTree(N, X_f, X_unit, A_f, A_unit, operate) A = map(int, readline().split()) A = ((0, 1, x) if x & 1 else (1, 0, x) for x in A) seg.build(A) for query in readlines(): if query.startswith(b'1'): L, R = map(int, query[2:].split()) seg.operate_range(L - 1, R, (0, 0)) elif query.startswith(b'2'): L, R, x = map(int, query[2:].split()) seg.operate_range(L - 1, R, (2, x)) elif query.startswith(b'3'): L, R = map(int, query[2:].split()) ev = 0 od = 0 print(seg.fold(L - 1, R)[2])