結果

問題 No.862 XORでX
ユーザー QCFiumQCFium
提出日時 2019-08-09 23:32:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 173,636 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-19 15:55:20
合計ジャッジ時間 8,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 174 ms
8,320 KB
testcase_21 AC 171 ms
8,192 KB
testcase_22 AC 171 ms
8,320 KB
testcase_23 AC 173 ms
8,320 KB
testcase_24 AC 169 ms
8,192 KB
testcase_25 AC 175 ms
8,192 KB
testcase_26 WA -
testcase_27 AC 175 ms
8,448 KB
testcase_28 AC 171 ms
8,320 KB
testcase_29 AC 174 ms
8,320 KB
testcase_30 AC 170 ms
8,320 KB
testcase_31 AC 172 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}
uint32_t xorshift() {
	static uint32_t x = 2463534242;
	x ^= x << 13;
	x ^= x >> 17;
	x ^= x << 15;
	return x;
}
int main() {
	int n = ri(), x = ri();
	bool inv = false;
	if (n >= 50000) n = 100005 - n, inv = true, x ^= 1;
	
	while (1) {
		std::set<int> all;
		int xorr = x;
		for (int i = 0; i + 1 < n; i++) {
			int cur;
			do cur = xorshift() % 100005 + 1; while (all.count(cur));
			all.insert(cur);
			xorr ^= cur;
		}
		if (!all.count(xorr)) {
			all.insert(xorr);
			if (inv) {
				for (int i = 1; i <= 100005; i++) {
					if (all.count(i)) all.erase(i);
					else all.insert(i);
				}
			}
			for (auto i : all) std::cout << i << std::endl;
			return 0;
		}
	}
	
	return 0;
}
0