結果

問題 No.2879 Range Flip Queries
ユーザー Hyoka7Hyoka7
提出日時 2024-09-10 01:49:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 169,988 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-09-10 01:49:36
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 53 ms
6,940 KB
testcase_04 AC 54 ms
6,944 KB
testcase_05 AC 55 ms
6,944 KB
testcase_06 AC 56 ms
6,944 KB
testcase_07 AC 57 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 119 ms
6,940 KB
testcase_14 AC 129 ms
6,940 KB
testcase_15 AC 93 ms
6,940 KB
testcase_16 AC 43 ms
6,940 KB
testcase_17 AC 98 ms
6,940 KB
testcase_18 AC 155 ms
7,040 KB
testcase_19 AC 166 ms
7,040 KB
testcase_20 AC 156 ms
7,040 KB
testcase_21 AC 158 ms
7,168 KB
testcase_22 AC 159 ms
7,040 KB
testcase_23 AC 152 ms
7,040 KB
testcase_24 AC 158 ms
7,168 KB
testcase_25 AC 156 ms
7,168 KB
testcase_26 AC 155 ms
7,040 KB
testcase_27 AC 157 ms
7,040 KB
testcase_28 AC 175 ms
7,168 KB
testcase_29 AC 133 ms
7,296 KB
testcase_30 AC 132 ms
7,040 KB
testcase_31 AC 130 ms
7,296 KB
testcase_32 AC 130 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for (int i = a; i < (int)(n); i++)
using namespace std;

void faster()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
}

template <typename T>
void input(T &x)
{
    cin >> x;
}
template <typename T, typename... Args>
void input(T &x, Args &...args)
{
    cin >> x;
    input(args...);
}

int main()
{
    faster();

    int n, q;
    input(n, q);

    vector<int> v(n);
    rep(i, 0, n)
    {
        input(v[i]);
    }

    vector<int> flip(n + 1, 0);

    rep(i, 0, q)
    {
        int l, r;
        input(l, r);
        flip[l - 1]++;
        if (r < n)
            flip[r]--;
    }

    int current_flip = 0;
    rep(i, 0, n)
    {
        current_flip += flip[i];
        if (current_flip % 2 == 1)
        {
            v[i] = 1 - v[i];
        }
        cout << v[i] << " ";
    }

    cout << '\n';
}
0