結果

問題 No.2879 Range Flip Queries
ユーザー shobonvipshobonvip
提出日時 2024-09-20 01:19:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 203,576 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-20 01:19:56
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 55 ms
6,944 KB
testcase_04 AC 54 ms
6,944 KB
testcase_05 AC 54 ms
6,944 KB
testcase_06 AC 55 ms
6,940 KB
testcase_07 AC 56 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 112 ms
6,944 KB
testcase_14 AC 127 ms
6,940 KB
testcase_15 AC 83 ms
6,944 KB
testcase_16 AC 40 ms
6,944 KB
testcase_17 AC 94 ms
6,944 KB
testcase_18 AC 150 ms
6,948 KB
testcase_19 AC 153 ms
7,040 KB
testcase_20 AC 153 ms
6,948 KB
testcase_21 AC 155 ms
7,168 KB
testcase_22 AC 152 ms
7,040 KB
testcase_23 AC 152 ms
6,944 KB
testcase_24 AC 152 ms
7,040 KB
testcase_25 AC 155 ms
7,040 KB
testcase_26 AC 163 ms
7,040 KB
testcase_27 AC 160 ms
7,040 KB
testcase_28 AC 154 ms
7,040 KB
testcase_29 AC 128 ms
7,040 KB
testcase_30 AC 128 ms
7,168 KB
testcase_31 AC 126 ms
7,168 KB
testcase_32 AC 128 ms
7,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    6 | bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
      |            ^~~~
main.cpp:6:21: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    6 | bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
      |                     ^~~~
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    7 | bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
      |            ^~~~
main.cpp:7:21: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    7 | bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
      |                     ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,s,n) for (int i = (int)(s); i < (int)(n); i++)
#define all(v) begin(v),end(v)
using namespace std;
using ll = long long;
bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
int main(){
    cin.tie(0)->sync_with_stdio(0);
	int n,q; cin >> n >> q;
	vector<int> a(n);
	vector<int> b(n+1);
	rep(i,0,n){
		cin >> a[i];
	}
	rep(i,0,q){
		int l, r; cin >> l >> r;
		l--;
		b[l] ^= 1;
		b[r] ^= 1;
	}

	int now = 0;
	rep(i,0,n){
		now ^= b[i];
		cout << (now ^ a[i]) << ' ';
	}
	cout << '\n';
}
0