結果

問題 No.2879 Range Flip Queries
ユーザー Hyoka7Hyoka7
提出日時 2024-09-10 01:46:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 2,811 ms
コンパイル使用メモリ 248,908 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-09-10 01:46:48
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 140 ms
6,940 KB
testcase_04 AC 140 ms
6,944 KB
testcase_05 AC 141 ms
6,944 KB
testcase_06 AC 141 ms
6,944 KB
testcase_07 AC 151 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 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 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for (int i = a; i < (int)(n); i++)
#define vi vector<int>
#define vb vector<bool>
#define ll long long
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...);
}

vi xudlr = {0, 0, -1, 1};
vi yudlr = {-1, 1, 0, 0};

int main()
{
    int n, q;
    input(n, q);
    vector<int> v(n);
    rep(i, 0, n)
    {
        input(v[i]);
    }
    vector<bool> flip(n, false);
    rep(i, 0, q)
    {
        int l, r;
        input(l, r);
        rep(j, l - 1, r)
        {
            flip[j] = !flip[j];
        }
    }
    rep(i, 0, n)
    {
        if (flip[i] == true)
        {
            if (v[i] == 0)
                cout << 1 << " ";
            else
                cout << 0 << " ";
        }
        else
        {
            cout << v[i] << " ";
        }
    }
    cout << '\n';
}
0