結果

問題 No.2879 Range Flip Queries
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-29 11:56:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 245,336 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-09-29 11:56:33
合計ジャッジ時間 13,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 173 ms
6,820 KB
testcase_04 AC 147 ms
6,816 KB
testcase_05 AC 149 ms
6,820 KB
testcase_06 AC 140 ms
6,816 KB
testcase_07 AC 141 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 349 ms
6,820 KB
testcase_14 AC 318 ms
6,820 KB
testcase_15 AC 226 ms
6,820 KB
testcase_16 AC 93 ms
6,820 KB
testcase_17 AC 245 ms
6,816 KB
testcase_18 AC 378 ms
7,040 KB
testcase_19 AC 392 ms
7,040 KB
testcase_20 AC 415 ms
7,040 KB
testcase_21 AC 398 ms
7,168 KB
testcase_22 AC 378 ms
7,040 KB
testcase_23 AC 408 ms
7,040 KB
testcase_24 AC 387 ms
7,168 KB
testcase_25 AC 388 ms
7,168 KB
testcase_26 AC 411 ms
7,168 KB
testcase_27 AC 381 ms
7,296 KB
testcase_28 AC 389 ms
7,168 KB
testcase_29 AC 341 ms
7,168 KB
testcase_30 AC 343 ms
7,168 KB
testcase_31 AC 332 ms
7,168 KB
testcase_32 AC 357 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n, q;
    cin >> n >> q;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> imos(n + 1);
    while (q--) {
        int l, r;
        cin >> l >> r;
        l--;
        imos[l]++;
        imos[r]--;
    }
    for (int i = 1; i <= n; i++) {
        imos[i] += imos[i - 1];
    }
    for (int i = 0; i < n; i++) {
        cout << (imos[i] % 2 == 0 ? a[i] : 1 - a[i]) << " ";
    }
    cout << endl;
}
0