結果

問題 No.2879 Range Flip Queries
ユーザー a01sa01toa01sa01to
提出日時 2024-12-25 00:42:30
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,358 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 252,792 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-12-25 00:43:10
合計ジャッジ時間 35,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 145 ms
5,248 KB
testcase_04 AC 145 ms
5,248 KB
testcase_05 AC 183 ms
5,248 KB
testcase_06 AC 246 ms
5,248 KB
testcase_07 AC 209 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 990 ms
5,248 KB
testcase_14 AC 1,096 ms
5,248 KB
testcase_15 AC 748 ms
5,248 KB
testcase_16 AC 322 ms
5,248 KB
testcase_17 AC 820 ms
5,376 KB
testcase_18 AC 1,335 ms
5,376 KB
testcase_19 AC 1,322 ms
5,376 KB
testcase_20 AC 1,358 ms
5,376 KB
testcase_21 AC 1,330 ms
5,376 KB
testcase_22 AC 1,311 ms
5,376 KB
testcase_23 AC 1,315 ms
5,504 KB
testcase_24 AC 1,329 ms
5,376 KB
testcase_25 AC 1,343 ms
5,376 KB
testcase_26 AC 1,351 ms
5,504 KB
testcase_27 AC 1,313 ms
5,376 KB
testcase_28 AC 1,317 ms
5,504 KB
testcase_29 AC 978 ms
5,376 KB
testcase_30 AC 1,068 ms
5,504 KB
testcase_31 AC 1,032 ms
5,504 KB
testcase_32 AC 1,072 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

#include <atcoder/lazysegtree>
bool op(bool a, bool b) { return a || b; }  // なんでも
bool e() { return false; }                  // なんでも
bool mapping(bool f, bool x) { return f ^ x; }
bool composition(bool f, bool g) { return f ^ g; }
bool id() { return false; }

int main() {
  int n, q;
  cin >> n >> q;
  vector<int> a(n);
  rep(i, n) cin >> a[i];
  atcoder::lazy_segtree<bool, op, e, bool, mapping, composition, id> seg(n);
  rep(i, n) seg.set(i, a[i] == 1);
  while (q--) {
    int l, r;
    cin >> l >> r;
    seg.apply(l - 1, r, true);
  }
  rep(i, n) cout << (seg.get(i) ? 1 : 0) << ' ';
  cout << endl;
  return 0;
}
0