結果
問題 | No.2080 Simple Nim Query |
ユーザー | minimum |
提出日時 | 2022-09-25 21:23:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 697 ms / 3,000 ms |
コード長 | 1,415 bytes |
コンパイル時間 | 418 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 105,728 KB |
最終ジャッジ日時 | 2024-06-12 07:21:37 |
合計ジャッジ時間 | 6,767 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,352 KB |
testcase_01 | AC | 40 ms
52,224 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 568 ms
78,048 KB |
testcase_04 | AC | 509 ms
77,952 KB |
testcase_05 | AC | 683 ms
101,760 KB |
testcase_06 | AC | 668 ms
105,728 KB |
testcase_07 | AC | 678 ms
105,216 KB |
testcase_08 | AC | 697 ms
105,216 KB |
testcase_09 | AC | 683 ms
105,216 KB |
testcase_10 | AC | 610 ms
105,600 KB |
ソースコード
class Bit: def __init__(self, N): self.size = N self.depth = N.bit_length() self.tree = [0] * (N + 1) def add(self, i, x): while i < self.size: self.tree[i] += x i += i & (-i) def sum0(self, r): s = 0 while r > 0: s += self.tree[r] r -= r & (-r) return s def get_sum(self, l, r): if l <= 1: return self.sum0(r) else: return self.sum0(r) - self.sum0(l - 1) def lower_bound(self, x): s, p = 0, 0 for i in range(self.depth, -1, -1): q = p + (1 << i) if q <= self.size and s + self.tree[q] < x: s += self.tree[q] p += 1 << i return p + 1 N, Q = map(int, input().split()) A = list(map(int, input().split())) bit = Bit(N + 1) for i in range(N): if A[i] > 1: bit.add(i + 1, 1) for i in range(Q): t, x, y = map(int, input().split()) if t == 1: if A[x - 1] == 1 and y > 1: bit.add(x, 1) elif A[x - 1] > 1 and y == 1: bit.add(x, -1) A[x - 1] = y else: if x == y: print('F') else: l = bit.lower_bound(bit.sum0(y)) m = max(l, x) if (y - m) % 2 == 0: print('F') else: print('S')