結果

問題 No.2879 Range Flip Queries
ユーザー umezoumezo
提出日時 2024-09-08 12:36:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 2,886 ms
コンパイル使用メモリ 246,476 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-08 12:36:59
合計ジャッジ時間 9,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 58 ms
5,376 KB
testcase_04 AC 55 ms
5,376 KB
testcase_05 AC 58 ms
5,376 KB
testcase_06 AC 56 ms
5,376 KB
testcase_07 AC 55 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 123 ms
5,504 KB
testcase_14 AC 133 ms
5,632 KB
testcase_15 AC 85 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
testcase_17 AC 103 ms
6,784 KB
testcase_18 AC 156 ms
6,912 KB
testcase_19 AC 164 ms
7,040 KB
testcase_20 AC 165 ms
7,040 KB
testcase_21 AC 190 ms
7,168 KB
testcase_22 AC 163 ms
7,040 KB
testcase_23 AC 157 ms
7,040 KB
testcase_24 AC 166 ms
7,168 KB
testcase_25 AC 165 ms
7,168 KB
testcase_26 AC 166 ms
7,168 KB
testcase_27 AC 172 ms
7,040 KB
testcase_28 AC 161 ms
7,168 KB
testcase_29 AC 137 ms
7,040 KB
testcase_30 AC 140 ms
7,168 KB
testcase_31 AC 140 ms
7,168 KB
testcase_32 AC 138 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,q;
  cin>>n>>q;
  V<int> A(n);
  rep(i,n) cin>>A[i];
  V<int> B(n+1);
  rep(i,q){
    int l,r;
    cin>>l>>r;
    l--;
    B[l]++;
    B[r]++;
  }
  for(int i=1;i<=n;i++) B[i]=(B[i]+B[i-1])%2;
  rep(i,n) A[i]=(A[i]+B[i])%2;
  rep(i,n){
    if(i) cout<<" ";
    cout<<A[i];
  }
  cout<<endl;
  
    
  return 0;
}
0