結果
| 問題 |
No.862 XORでX
|
| コンテスト | |
| ユーザー |
QCFium
|
| 提出日時 | 2019-08-09 23:42:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 814 bytes |
| コンパイル時間 | 1,484 ms |
| コンパイル使用メモリ | 173,776 KB |
| 実行使用メモリ | 8,192 KB |
| 最終ジャッジ日時 | 2024-07-19 15:57:36 |
| 合計ジャッジ時間 | 7,650 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 12 RE * 16 |
ソースコード
#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 (xorr && xorr <= 100005 && !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);
}
}
assert(all.size() == n);
for (auto i : all) std::cout << i << std::endl;
return 0;
}
}
return 0;
}
QCFium