結果

問題 No.2879 Range Flip Queries
ユーザー kusaf_kusaf_
提出日時 2024-09-10 17:19:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 2,943 ms
コンパイル使用メモリ 252,292 KB
実行使用メモリ 19,500 KB
最終ジャッジ日時 2024-09-10 17:20:06
合計ジャッジ時間 14,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 57 ms
6,944 KB
testcase_04 AC 50 ms
6,940 KB
testcase_05 AC 57 ms
6,940 KB
testcase_06 AC 65 ms
6,944 KB
testcase_07 AC 65 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 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,944 KB
testcase_13 AC 308 ms
17,908 KB
testcase_14 AC 342 ms
17,824 KB
testcase_15 AC 260 ms
10,452 KB
testcase_16 AC 89 ms
10,764 KB
testcase_17 AC 232 ms
19,020 KB
testcase_18 AC 410 ms
19,412 KB
testcase_19 AC 436 ms
19,372 KB
testcase_20 AC 423 ms
19,212 KB
testcase_21 AC 412 ms
19,312 KB
testcase_22 AC 436 ms
19,216 KB
testcase_23 AC 404 ms
19,252 KB
testcase_24 AC 416 ms
19,264 KB
testcase_25 AC 465 ms
19,292 KB
testcase_26 AC 420 ms
19,500 KB
testcase_27 AC 408 ms
19,396 KB
testcase_28 AC 450 ms
19,408 KB
testcase_29 AC 250 ms
19,408 KB
testcase_30 AC 247 ms
19,448 KB
testcase_31 AC 272 ms
19,380 KB
testcase_32 AC 255 ms
19,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
using namespace std;
using namespace atcoder;
using ll = long long;

using T = ll;
using F = ll;
T op(T l, T r) { return 0; }
T e() { return 0; }
T fx(F f, T x) { return f ^ x; }
F fg(F f, F g) { return f ^ g; }
F id() { return 0; }

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, Q;
  cin >> N >> Q;

  vector<ll> A(N);
  for(auto &i : A) { cin >> i; }

  lazy_segtree<T, op, e, F, fx, fg, id> S(A);
  while(Q--) {
    ll l, r;
    cin >> l >> r;
    S.apply(--l, r, 1);
  }

  for(ll i = 0; i < N; i++) { cout << S.get(i) << " "; }
}
0