結果
問題 | No.1228 I hate XOR Matching |
ユーザー | Mister |
提出日時 | 2020-09-12 00:42:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 698 ms |
コンパイル使用メモリ | 75,008 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 05:55:13 |
合計ジャッジ時間 | 11,791 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <iostream> #include <vector> void solve() { int k, x; std::cin >> k >> x; if (x == 0) { std::cout << "Yes\n" << 1 << "\n" << (k == 0 ? 1 : 0) << "\n"; return; } if (k == 0) ++x; if (__builtin_popcount(x) != 1) { std::cout << "No\n"; return; } int p = __builtin_ctz(x); std::vector<int> ans; // 線形独立なものを加える for (int i = 0; i < 5; ++i) { ans.push_back(1 << i); k &= ~(1 << i); } // kが従属じゃなければ追加 if (k < (1 << 5)) ans.push_back(k); // 線形従属なものを追加 for (int q = 0; q < p; ++q) { ans.push_back(q); } std::cout << "Yes\n" << ans.size() << "\n"; for (auto a : ans) std::cout << a << " "; std::cout << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }