結果

問題 No.2879 Range Flip Queries
ユーザー kaede2020kaede2020
提出日時 2024-09-08 14:24:46
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 6,095 ms
コンパイル使用メモリ 336,228 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-09-08 14:25:06
合計ジャッジ時間 18,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 148 ms
6,944 KB
testcase_04 AC 146 ms
6,944 KB
testcase_05 AC 146 ms
6,940 KB
testcase_06 AC 146 ms
6,944 KB
testcase_07 AC 146 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 390 ms
6,940 KB
testcase_14 AC 378 ms
6,940 KB
testcase_15 AC 264 ms
6,944 KB
testcase_16 AC 110 ms
6,940 KB
testcase_17 AC 274 ms
6,940 KB
testcase_18 AC 465 ms
7,040 KB
testcase_19 AC 471 ms
7,296 KB
testcase_20 AC 470 ms
7,040 KB
testcase_21 AC 468 ms
7,168 KB
testcase_22 AC 469 ms
7,040 KB
testcase_23 AC 463 ms
7,168 KB
testcase_24 AC 482 ms
7,168 KB
testcase_25 AC 475 ms
7,424 KB
testcase_26 AC 477 ms
7,296 KB
testcase_27 AC 473 ms
7,296 KB
testcase_28 AC 473 ms
7,424 KB
testcase_29 AC 365 ms
7,296 KB
testcase_30 AC 364 ms
7,296 KB
testcase_31 AC 364 ms
7,168 KB
testcase_32 AC 364 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
using mint = modint998244353;
#define ull unsigned long long
random_device rnd;
mt19937 mt(rnd());
int RandInt(int a, int b) {
    return a + mt() % (b - a + 1);
}
int dx[4]={1,0,-1,0};
int dy[4]={0,1,0,-1};

int n,q;
int main(){
    cin>>n>>q;
    vector<int>a(n);
    rep(i,n)cin>>a[i];
    vector<int>rui(n+1);
    rep(i,q){
        int l,r;
        cin>>l>>r;
        l--;
        rui[l]++;
        rui[r]--;
    }
    rep(i,n-1)rui[i+1]+=rui[i];
    rep(i,n)if(rui[i]%2==1)cout<<(a[i]^1)<<" ";
    else cout<<a[i]<<" ";
    cout<<endl;
    return 0;
}
0