結果
問題 | No.2895 Zero XOR Subset |
ユーザー | とんぼ |
提出日時 | 2024-09-20 22:25:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 1,922 ms |
コンパイル使用メモリ | 173,912 KB |
実行使用メモリ | 284,640 KB |
最終ジャッジ日時 | 2024-09-20 22:25:30 |
合計ジャッジ時間 | 6,292 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
14,456 KB |
testcase_01 | AC | 7 ms
14,388 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; #define rep(i,N) for(i=0;i<N;i++) #define ll long long int main(void){ ll N; ll A[200009]={0}; set<ll>use[200009]; ll i,j,k; cin>>N; rep(i,N)cin>>A[i]; rep(i,N)use[i].insert(i); set<ll>pivot; for(k=59;0<=k;k--){ rep(j,N){ if(pivot.find(j)!=pivot.end())continue; if((A[j]&(1LL<<k))!=0)break; } if(j==N)continue; pivot.insert(j); rep(i,N){ if(i==j)continue; if((A[i]&(1LL<<k))==0)continue; A[i]^=A[j]; use[i].insert(j); } } bool ans=0; rep(i,N){ if(A[i]==0){ ans=1; cout<<use[i].size()<<endl; for(auto e:use[i]){ cout<<e+1<<' '; } cout<<endl; break; } } if(ans==0)cout<<-1<<endl; return 0; }