結果
問題 | No.2895 Zero XOR Subset |
ユーザー | 沙耶花 |
提出日時 | 2024-09-20 21:26:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 1,162 bytes |
コンパイル時間 | 5,047 ms |
コンパイル使用メモリ | 265,048 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-20 21:26:23 |
合計ジャッジ時間 | 9,168 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 135 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 136 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 136 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 136 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 135 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 136 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 136 ms
6,940 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | AC | 163 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 136 ms
6,944 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 136 ms
6,940 KB |
testcase_35 | AC | 3 ms
6,940 KB |
testcase_36 | AC | 137 ms
6,944 KB |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001LL void Gauss(vector<bitset<300>> &B){ int now = 0; rep(i,300){ int temp = -1; for(int j=now;j<B.size();j++){ if(B[j][i]){ temp = j; break; } } if(temp==-1)continue; rep(j,B.size()){ if(temp==j)continue; if(B[j][i])B[j] ^= B[temp]; } swap(B[now],B[temp]); now++; } } int main(){ int n; cin>>n; vector<long long> a(n); rep(i,n)cin>>a[i]; if(n>70)a.resize(70); vector<bitset<300>> cur; rep(i,a.size()){ bitset<300> t; rep(j,60){ if(a[i]>>j&1)t[j] = 1; } t[60+i] = 1; cur.push_back(t); Gauss(cur); bool f = true; rep(j,60){ if(cur.back()[j]){ f = false; break; } } if(f){ vector<int> ans; rep(j,100){ if(cur.back()[j+60])ans.push_back(j); } cout<<ans.size()<<endl; rep(j,ans.size()){ if(j!=0)cout<<' '; cout<<ans[j]+1; } cout<<endl; return 0; } } cout<<-1<<endl; return 0; }