結果

問題 No.2879 Range Flip Queries
ユーザー tottoripapertottoripaper
提出日時 2024-09-12 14:20:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 203,940 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-12 14:20:46
合計ジャッジ時間 13,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 57 ms
5,376 KB
testcase_04 AC 57 ms
5,376 KB
testcase_05 AC 58 ms
5,376 KB
testcase_06 AC 61 ms
5,376 KB
testcase_07 AC 58 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 120 ms
5,504 KB
testcase_14 AC 129 ms
5,632 KB
testcase_15 AC 90 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
testcase_17 AC 100 ms
6,656 KB
testcase_18 AC 161 ms
6,784 KB
testcase_19 AC 163 ms
6,912 KB
testcase_20 AC 160 ms
6,912 KB
testcase_21 AC 161 ms
7,040 KB
testcase_22 AC 160 ms
7,040 KB
testcase_23 AC 160 ms
7,040 KB
testcase_24 AC 163 ms
7,168 KB
testcase_25 AC 160 ms
7,040 KB
testcase_26 AC 161 ms
7,168 KB
testcase_27 AC 159 ms
7,168 KB
testcase_28 AC 161 ms
7,040 KB
testcase_29 AC 136 ms
7,168 KB
testcase_30 AC 151 ms
7,040 KB
testcase_31 AC 136 ms
7,040 KB
testcase_32 AC 135 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N, Q;
    std::cin >> N >> Q;

    std::vector<int> A(N);
    for(int i=0;i<N;i++){
        std::cin >> A[i];
    }

    std::vector<int> B(N + 1, 0);
    for(int _=0;_<Q;_++){
        int L, R;
        std::cin >> L >> R;

        B[L - 1] ^= 1;
        B[R] ^= 1;
    }

    for(int i=1;i<N;i++){
        B[i] ^= B[i - 1];
    }

    for(int i=0;i<N;i++){
        std::cout << (A[i] ^ B[i]) << " \n"[i + 1 == N];
    }
}
0