結果
問題 | No.2895 Zero XOR Subset |
ユーザー | srjywrdnprkt |
提出日時 | 2024-11-13 14:42:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,582 bytes |
コンパイル時間 | 2,650 ms |
コンパイル使用メモリ | 211,660 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-11-13 14:43:06 |
合計ジャッジ時間 | 8,083 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int BITLEN=60; //bitsetの昇順 bool bitasc(const bitset<BITLEN> &a, const bitset<BITLEN> &b){ for (int i=BITLEN-1; i>=0; i--){ if (a[i] != b[i]){ return a[i] < b[i]; } } return false; } //bitsetのmin bitset<BITLEN> min(bitset<BITLEN> a, bitset<BITLEN> b){ if (bitasc(a, b)) return a; return b; } const ll modc=998244353; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N, A; cin >> N; vector<pair<bitset<BITLEN>, int>> vec(N); vector<pair<bitset<BITLEN>, int>> base; for (int i=0; i<N; i++){ cin >> A; vec[i] = {A, i}; } //A_iに作用したindex vector<vector<ll>> v(N); vector<ll> cnt(N), ans; auto dfs=[&](auto self, int from)->void{ cnt[from]++; for (auto to : v[from]){ self(self, to); } }; for (int i=0; i<N; i++){ for (auto &[e, x] : base){ if (bitasc(vec[i].first^e, vec[i].first)){ vec[i].first = vec[i].first^e; v[i].push_back(x); } } if (vec[i].first.any()) base.push_back(vec[i]); else{ dfs(dfs, i); for (int j=0; j<N; j++){ if (cnt[j] % 2 == 1) ans.push_back(j+1); } cout << ans.size() << endl; for (auto x : ans) cout << x << " "; cout << endl; return 0; } } cout << -1 << endl; return 0; }