結果

問題 No.2080 Simple Nim Query
ユーザー tamatotamato
提出日時 2022-09-25 21:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 3,000 ms
コード長 1,753 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 105,424 KB
最終ジャッジ日時 2024-06-12 07:21:30
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,028 KB
testcase_01 AC 34 ms
53,008 KB
testcase_02 AC 33 ms
52,820 KB
testcase_03 AC 189 ms
78,464 KB
testcase_04 AC 159 ms
77,700 KB
testcase_05 AC 269 ms
101,128 KB
testcase_06 AC 266 ms
104,888 KB
testcase_07 AC 272 ms
104,656 KB
testcase_08 AC 291 ms
104,872 KB
testcase_09 AC 279 ms
104,476 KB
testcase_10 AC 152 ms
105,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))

    bit = Bit(N)
    for i, a in enumerate(A):
        if a != 1:
            bit.add(i+1, 1)
    for _ 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:
                k = bit.sum(y)
                j = bit.lower_bound(k)
                if j < x:
                    if (y - x) & 1:
                        print("S")
                    else:
                        print("F")
                else:
                    if (y - j) & 1:
                        print("S")
                    else:
                        print("F")


if __name__ == '__main__':
    main()
0