結果

問題 No.2879 Range Flip Queries
ユーザー mikan0131mikan0131
提出日時 2024-12-19 12:16:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 200,064 KB
実行使用メモリ 11,396 KB
最終ジャッジ日時 2024-12-19 12:16:24
合計ジャッジ時間 20,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,676 KB
testcase_01 AC 4 ms
9,676 KB
testcase_02 AC 3 ms
7,628 KB
testcase_03 AC 159 ms
9,676 KB
testcase_04 AC 160 ms
9,676 KB
testcase_05 AC 160 ms
7,756 KB
testcase_06 AC 156 ms
9,800 KB
testcase_07 AC 188 ms
9,676 KB
testcase_08 AC 3 ms
9,676 KB
testcase_09 AC 3 ms
7,628 KB
testcase_10 AC 3 ms
7,756 KB
testcase_11 AC 4 ms
9,680 KB
testcase_12 AC 4 ms
7,756 KB
testcase_13 AC 346 ms
9,776 KB
testcase_14 AC 368 ms
10,120 KB
testcase_15 AC 292 ms
9,896 KB
testcase_16 AC 108 ms
10,132 KB
testcase_17 AC 254 ms
11,012 KB
testcase_18 AC 440 ms
11,232 KB
testcase_19 AC 476 ms
11,280 KB
testcase_20 AC 447 ms
11,152 KB
testcase_21 AC 474 ms
11,280 KB
testcase_22 AC 442 ms
11,108 KB
testcase_23 AC 439 ms
11,192 KB
testcase_24 AC 450 ms
11,100 KB
testcase_25 AC 454 ms
11,304 KB
testcase_26 AC 474 ms
11,340 KB
testcase_27 AC 448 ms
11,228 KB
testcase_28 AC 477 ms
11,268 KB
testcase_29 AC 367 ms
11,272 KB
testcase_30 AC 372 ms
11,288 KB
testcase_31 AC 398 ms
11,280 KB
testcase_32 AC 383 ms
11,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N, Q;
int A[500009];
int L[500009], R[500009];
int S[500009];

int main() {
	cin >> N >> Q;
	for (int i = 1; i <= N; i++) cin >> A[i];
	for (int i = 1; i <= Q; i++) cin >> L[i] >> R[i];
	for (int i = 1; i <= Q; i++) {
		S[L[i]]++;
		S[R[i] + 1]--;
	}
	for (int i = 1; i <= N; i++) {
		S[i] = S[i - 1] + S[i];
	}
	for (int i = 1; i <= N; i++) {
		cout << (A[i] + S[i]) % 2;
		if (i == N) cout << endl;
		else cout << ' ';
	}
	return 0;
}
0