結果

問題 No.2879 Range Flip Queries
ユーザー nononnonon
提出日時 2024-09-08 12:32:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 207,232 KB
実行使用メモリ 11,388 KB
最終ジャッジ日時 2024-09-08 12:32:48
合計ジャッジ時間 12,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 59 ms
6,940 KB
testcase_04 AC 60 ms
6,944 KB
testcase_05 AC 66 ms
6,944 KB
testcase_06 AC 74 ms
6,940 KB
testcase_07 AC 74 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 329 ms
10,392 KB
testcase_14 AC 349 ms
10,592 KB
testcase_15 AC 242 ms
6,940 KB
testcase_16 AC 94 ms
7,040 KB
testcase_17 AC 234 ms
11,136 KB
testcase_18 AC 421 ms
11,288 KB
testcase_19 AC 428 ms
11,256 KB
testcase_20 AC 425 ms
11,252 KB
testcase_21 AC 439 ms
11,372 KB
testcase_22 AC 424 ms
11,336 KB
testcase_23 AC 429 ms
11,264 KB
testcase_24 AC 423 ms
11,296 KB
testcase_25 AC 422 ms
11,296 KB
testcase_26 AC 421 ms
11,388 KB
testcase_27 AC 428 ms
11,388 KB
testcase_28 AC 421 ms
11,296 KB
testcase_29 AC 254 ms
11,332 KB
testcase_30 AC 258 ms
11,332 KB
testcase_31 AC 257 ms
11,288 KB
testcase_32 AC 256 ms
11,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/lazysegtree>
using namespace std;
int op(int a, int b){return a^b;}
int e(){return 0;}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,Q;
    cin>>N>>Q;
    vector<int>A(N);
    for(int i=0;i<N;i++)cin>>A[i];
    atcoder::lazy_segtree<int,op,e,int,op,op,e>seg(A);
    while(Q--)
    {
        int L,R;
        cin>>L>>R;
        L--;
        seg.apply(L,R,1);
    }
    for(int i=0;i<N;i++)cout<<seg.get(i)<<" \n"[i+1==N];
}
0