結果

問題 No.2879 Range Flip Queries
ユーザー twooimp2twooimp2
提出日時 2024-09-09 00:35:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 5,699 ms
コンパイル使用メモリ 311,832 KB
実行使用メモリ 19,608 KB
最終ジャッジ日時 2024-09-09 00:36:21
合計ジャッジ時間 23,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 139 ms
6,940 KB
testcase_04 AC 141 ms
6,940 KB
testcase_05 AC 151 ms
6,944 KB
testcase_06 AC 164 ms
6,940 KB
testcase_07 AC 158 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,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 619 ms
17,720 KB
testcase_14 AC 699 ms
18,032 KB
testcase_15 AC 454 ms
10,492 KB
testcase_16 AC 183 ms
10,812 KB
testcase_17 AC 451 ms
19,144 KB
testcase_18 AC 844 ms
19,356 KB
testcase_19 AC 827 ms
19,408 KB
testcase_20 AC 860 ms
19,536 KB
testcase_21 AC 846 ms
19,488 KB
testcase_22 AC 805 ms
19,312 KB
testcase_23 AC 852 ms
19,424 KB
testcase_24 AC 864 ms
19,608 KB
testcase_25 AC 845 ms
19,468 KB
testcase_26 AC 837 ms
19,428 KB
testcase_27 AC 850 ms
19,468 KB
testcase_28 AC 857 ms
19,388 KB
testcase_29 AC 519 ms
19,368 KB
testcase_30 AC 552 ms
19,572 KB
testcase_31 AC 537 ms
19,596 KB
testcase_32 AC 547 ms
19,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using S = long long;
using F = long long;

const S INF = 8e18;

S op(S a, S b){ return std::min(a, b); }
S e(){ return INF; }
S mapping(F f, S x){ return (f+x)%2; }
F composition(F f, F g){ return (f+g)%2; }
F id(){ return 0; }

int main(){
  ll n,q;
  cin>>n>>q;
  vector<ll> a(n);
  for(ll i=0;i<n;i++){
    cin>>a[i];
  }
  lazy_segtree<S, op, e, F, mapping, composition, id> seg(a);
  while(q--){
    ll l,r;
    cin>>l>>r;
    l--;
    seg.apply(l,r,1);
  }
  for(ll i=0;i<n;i++){
    cout<<seg.get(i)<<" ";
  }
  cout<<endl;
}
0