結果
問題 | No.2895 Zero XOR Subset |
ユーザー | erbowl |
提出日時 | 2024-09-20 22:21:58 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,380 bytes |
コンパイル時間 | 3,137 ms |
コンパイル使用メモリ | 251,800 KB |
実行使用メモリ | 90,392 KB |
最終ジャッジ日時 | 2024-09-20 22:22:16 |
合計ジャッジ時間 | 13,282 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | WA | - |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; signed main(){ ll n; std::cin >> n; vector<ll> a(n); for (int i = 0; i < n; i++) { std::cin >> a[i]; } int MAX_DIGITS=60; int N = n; int now = 0; auto &C = a; vector<ll> index(n); for (int i = 0; i < n; i++) { index[i] = i; } vector<vector<ll>> lo(n); for (int i = MAX_DIGITS; i >= 0; i--) { for (int j = now + 1; j < N; j++) { if (C[j] & (1ll << i)) { std::swap(C[now], C[j]); swap(index[now],index[j]); break; } } if (!(C[now] & (1ll << i))) continue; for (int j = 0; j < n; j++) { if (j != now && (C[j] & (1ll << i))){ C[j] ^= C[now]; lo[index[j]].push_back(index[now]); } } now++; } vector<ll> re(n); for (int i = 0; i < n; i++) { re[index[i]] = i; } for (int i = 0; i < n; i++) { if(a[re[i]]==0&&lo[i].size()>0){ std::cout << lo[i].size()+1 << std::endl; for (auto e : lo[i]) { std::cout << e+1<<" "; } std::cout << i+1 << std::endl; return 0; }else{ } } std::cout << -1 << std::endl; };