結果

問題 No.2879 Range Flip Queries
ユーザー mattu34mattu34
提出日時 2024-09-13 20:39:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 2,524 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 174,360 KB
最終ジャッジ日時 2024-09-13 20:39:49
合計ジャッジ時間 19,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
88,496 KB
testcase_01 AC 162 ms
88,364 KB
testcase_02 AC 152 ms
88,560 KB
testcase_03 AC 242 ms
89,144 KB
testcase_04 AC 246 ms
89,620 KB
testcase_05 AC 286 ms
89,728 KB
testcase_06 AC 257 ms
89,252 KB
testcase_07 AC 247 ms
89,200 KB
testcase_08 AC 157 ms
88,920 KB
testcase_09 AC 151 ms
88,416 KB
testcase_10 AC 153 ms
88,660 KB
testcase_11 AC 153 ms
88,604 KB
testcase_12 AC 157 ms
88,892 KB
testcase_13 AC 411 ms
133,020 KB
testcase_14 AC 425 ms
137,964 KB
testcase_15 AC 336 ms
109,744 KB
testcase_16 AC 273 ms
115,620 KB
testcase_17 AC 401 ms
150,172 KB
testcase_18 AC 485 ms
173,264 KB
testcase_19 AC 521 ms
173,524 KB
testcase_20 AC 482 ms
173,900 KB
testcase_21 AC 486 ms
174,196 KB
testcase_22 AC 511 ms
173,596 KB
testcase_23 AC 479 ms
162,744 KB
testcase_24 AC 512 ms
173,892 KB
testcase_25 AC 529 ms
174,340 KB
testcase_26 AC 506 ms
174,140 KB
testcase_27 AC 504 ms
173,820 KB
testcase_28 AC 490 ms
174,360 KB
testcase_29 AC 451 ms
173,896 KB
testcase_30 AC 424 ms
173,476 KB
testcase_31 AC 453 ms
173,932 KB
testcase_32 AC 425 ms
173,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
from bisect import bisect_left, bisect_right
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")

N, Q = mi()
A = li()
cnt = [0] * (N + 1)
for _ in range(Q):
    l, r = mi()
    cnt[r] -= 1
    cnt[l - 1] += 1
ans = []
for i in range(N):
    cnt[i + 1] += cnt[i]
    if cnt[i] % 2 == 1:
        ans.append(A[i] ^ 1)
    else:
        ans.append(A[i])
print(*ans)
0