結果
問題 | No.2080 Simple Nim Query |
ユーザー | rlangevin |
提出日時 | 2023-04-11 08:51:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 714 ms / 3,000 ms |
コード長 | 1,775 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 105,296 KB |
最終ジャッジ日時 | 2024-06-12 07:45:50 |
合計ジャッジ時間 | 4,249 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,224 KB |
testcase_01 | AC | 37 ms
51,968 KB |
testcase_02 | AC | 33 ms
52,608 KB |
testcase_03 | AC | 200 ms
78,336 KB |
testcase_04 | AC | 140 ms
77,300 KB |
testcase_05 | AC | 217 ms
100,976 KB |
testcase_06 | AC | 704 ms
104,692 KB |
testcase_07 | AC | 714 ms
105,296 KB |
testcase_08 | AC | 348 ms
104,724 KB |
testcase_09 | AC | 366 ms
104,888 KB |
testcase_10 | AC | 174 ms
105,060 KB |
ソースコード
import sys readline = sys.stdin.readline class Fenwick_Tree: def __init__(self, n): self._n = n self.data = [0] * n def add(self, p, x): assert 0 <= p < self._n p += 1 while p <= self._n: self.data[p - 1] += x p += p & -p def sum(self, l, r): assert 0 <= l <= r <= self._n return self._sum(r) - self._sum(l) def _sum(self, r): s = 0 while r > 0: s += self.data[r - 1] r -= r & -r return s def get(self, k): k += 1 x, r = 0, 1 while r < self._n: r <<= 1 len = r while len: if x + len - 1 < self._n: if self.data[x + len - 1] < k: k -= self.data[x + len - 1] x += len len >>= 1 return x N, Q = map(int, readline().split()) A = list(map(int, readline().split())) BIT = Fenwick_Tree(N) for i in range(N): if A[i] == 1: BIT.add(i, 1) for _ in range(Q): T, X, Y = map(int, readline().split()) X -= 1 if T == 1: if A[X] == 1: BIT.add(X, -1) if Y == 1: BIT.add(X, 1) A[X] = Y else: v = BIT.sum(X, Y) if v == Y - X: print("F") if v % 2 else print("S") else: if A[Y - 1] != 1: print("F") else: yes = Y - 1 no = X while yes - no != 1: mid = (yes + no)//2 if BIT.sum(mid, Y) == Y - mid: yes = mid else: no = mid print("F") if (Y - yes) % 2 == 0 else print("S")