結果

問題 No.2879 Range Flip Queries
ユーザー elpheelphe
提出日時 2024-12-05 17:28:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 996 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-12-05 17:28:25
合計ジャッジ時間 11,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 64 ms
7,296 KB
testcase_04 AC 65 ms
7,040 KB
testcase_05 AC 64 ms
7,040 KB
testcase_06 AC 63 ms
7,040 KB
testcase_07 AC 64 ms
7,040 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 102 ms
6,912 KB
testcase_14 AC 107 ms
7,168 KB
testcase_15 AC 80 ms
6,272 KB
testcase_16 AC 30 ms
5,248 KB
testcase_17 AC 66 ms
5,376 KB
testcase_18 AC 122 ms
7,552 KB
testcase_19 AC 127 ms
7,680 KB
testcase_20 AC 123 ms
7,680 KB
testcase_21 AC 125 ms
7,552 KB
testcase_22 AC 123 ms
7,680 KB
testcase_23 AC 124 ms
7,680 KB
testcase_24 AC 125 ms
7,552 KB
testcase_25 AC 125 ms
7,680 KB
testcase_26 AC 124 ms
7,552 KB
testcase_27 AC 125 ms
7,552 KB
testcase_28 AC 125 ms
7,552 KB
testcase_29 AC 106 ms
7,552 KB
testcase_30 AC 107 ms
7,552 KB
testcase_31 AC 105 ms
7,552 KB
testcase_32 AC 105 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int32_t N, Q, i;
	cin >> N >> Q;
	vector<char> A(N);
	for (i = 0; i != N; ++i)
		cin >> A[i];

	vector<int32_t> L(Q), R(Q);
	for (i = 0; i != Q; ++i) cin >> L[i] >> R[i];

	vector<bool> imos(N + 1, false);
	for (i = 0; i != Q; ++i)
		imos[L[i] - 1] = !imos[L[i] - 1], imos[R[i]] = !imos[R[i]];

	for (i = 1; i <= N; ++i)
		imos[i] = imos[i] ^ imos[i - 1];

	if ((A[0] == '0') ^ imos[0]) cout << '0';
	else cout << '1';

	for (i = 1; i != N; ++i)
	{
		if ((A[i] == '0') ^ imos[i]) cout << " 0";
		else cout << " 1";
	}

	cout << '\n';
	return 0;
}
0