結果

問題 No.2879 Range Flip Queries
ユーザー loop0919loop0919
提出日時 2024-09-08 14:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 144,632 KB
最終ジャッジ日時 2024-09-08 14:35:51
合計ジャッジ時間 21,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,584 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 40 ms
53,480 KB
testcase_03 AC 322 ms
76,064 KB
testcase_04 AC 343 ms
76,216 KB
testcase_05 AC 338 ms
76,520 KB
testcase_06 AC 339 ms
76,604 KB
testcase_07 AC 381 ms
76,304 KB
testcase_08 AC 57 ms
64,488 KB
testcase_09 AC 46 ms
60,364 KB
testcase_10 AC 56 ms
65,092 KB
testcase_11 AC 55 ms
63,596 KB
testcase_12 AC 59 ms
65,692 KB
testcase_13 AC 670 ms
118,656 KB
testcase_14 AC 719 ms
124,016 KB
testcase_15 AC 519 ms
96,380 KB
testcase_16 AC 286 ms
102,028 KB
testcase_17 AC 577 ms
131,156 KB
testcase_18 AC 911 ms
143,880 KB
testcase_19 AC 917 ms
143,584 KB
testcase_20 AC 929 ms
143,620 KB
testcase_21 AC 906 ms
143,932 KB
testcase_22 AC 917 ms
143,868 KB
testcase_23 AC 912 ms
143,552 KB
testcase_24 AC 944 ms
144,008 KB
testcase_25 AC 912 ms
144,632 KB
testcase_26 AC 887 ms
144,256 KB
testcase_27 AC 917 ms
144,208 KB
testcase_28 AC 917 ms
144,132 KB
testcase_29 AC 703 ms
144,488 KB
testcase_30 AC 676 ms
144,336 KB
testcase_31 AC 705 ms
143,944 KB
testcase_32 AC 678 ms
144,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 双対BIT
class Dual_Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    # l 以上 r 未満の区間に x を加算する
    def prod(self, l, r, x):
        self._add(l, x)
        if r < self._n:
            self._add(r, -x)

    # 添え字 p の値を返す
    def get(self, p):
        return (self._sum(p + 1) - self._sum(0)) % 2

    def _add(self, p, x):
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            self.data[p - 1] %= 2
            p += p & -p

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            s %= 2
            r -= r & -r
        return s


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

fenwick = Dual_Fenwick_Tree(N)
for i in range(N):
    fenwick.prod(i, i + 1, A[i])

for _ in range(Q):
    L, R = map(int, input().split())
    fenwick.prod(L - 1, R, 1)

for i in range(N):
    print(fenwick.get(i), end=" ")
0