結果

問題 No.2080 Simple Nim Query
ユーザー rlangevinrlangevin
提出日時 2023-04-11 08:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 893 ms / 3,000 ms
コード長 1,775 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 106,352 KB
最終ジャッジ日時 2023-09-03 02:58:06
合計ジャッジ時間 5,389 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,640 KB
testcase_01 AC 69 ms
71,584 KB
testcase_02 AC 70 ms
71,348 KB
testcase_03 AC 250 ms
80,136 KB
testcase_04 AC 187 ms
78,724 KB
testcase_05 AC 277 ms
102,528 KB
testcase_06 AC 891 ms
106,280 KB
testcase_07 AC 893 ms
106,288 KB
testcase_08 AC 436 ms
106,352 KB
testcase_09 AC 448 ms
106,300 KB
testcase_10 AC 221 ms
106,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0