結果
問題 | No.2080 Simple Nim Query |
ユーザー | lilictaka |
提出日時 | 2022-09-26 23:36:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 441 ms / 3,000 ms |
コード長 | 1,877 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 109,696 KB |
最終ジャッジ日時 | 2024-06-12 07:27:29 |
合計ジャッジ時間 | 4,115 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,480 KB |
testcase_01 | AC | 35 ms
52,480 KB |
testcase_02 | AC | 36 ms
52,224 KB |
testcase_03 | AC | 286 ms
91,352 KB |
testcase_04 | AC | 229 ms
88,600 KB |
testcase_05 | AC | 409 ms
106,084 KB |
testcase_06 | AC | 408 ms
109,568 KB |
testcase_07 | AC | 392 ms
109,592 KB |
testcase_08 | AC | 441 ms
109,580 KB |
testcase_09 | AC | 413 ms
109,696 KB |
testcase_10 | AC | 243 ms
109,596 KB |
ソースコード
class SegmentTree(object): def __init__(self, A, dot, unit): n = 1 << (len(A) - 1).bit_length() tree = [unit] * (2 * n) for i, v in enumerate(A): tree[i + n] = v for i in range(n - 1, 0, -1): tree[i] = dot(tree[i << 1], tree[i << 1 | 1]) self._n = n self._tree = tree self._dot = dot self._unit = unit def __getitem__(self, i): return self._tree[i + self._n] def update(self, i, v): i += self._n self._tree[i] = v while i != 1: i >>= 1 self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1]) def add(self, i, v,ope): self.update(i, ope(self[i],v)) def sum(self, l, r): #これで[l,r)から取り出す。 l += self._n r += self._n l_val = r_val = self._unit while l < r: if l & 1: l_val = self._dot(l_val, self._tree[l]) l += 1 if r & 1: r -= 1 r_val = self._dot(self._tree[r], r_val) l >>= 1 r >>= 1 return self._dot(l_val, r_val) N,Q = map(int,input().split()) ANS = [] A = list(map(int,input().split())) seg = SegmentTree([-1] * N,lambda x,y:max(x,y),-1) for i in range(N): if A[i] == 1: pass else: seg.update(i,i) for _ in range(Q): t,x,y = map(int,input().split()) x-=1 if t == 1: if y ==1 : seg.update(x,-1) else: seg.update(x,x) else: ind = seg.sum(x,y) if ind != -1: if (y-ind) % 2 == 1: ANS.append('F') else: ANS.append('S') else: if (y-x) % 2 == 1: ANS.append('F') else: ANS.append('S') print(*ANS,sep='\n')