結果
問題 | No.2895 Zero XOR Subset |
ユーザー | Yukino DX. |
提出日時 | 2024-10-29 18:22:37 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,086 bytes |
コンパイル時間 | 14,038 ms |
コンパイル使用メモリ | 404,704 KB |
実行使用メモリ | 83,380 KB |
最終ジャッジ日時 | 2024-10-29 18:22:59 |
合計ジャッジ時間 | 19,934 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,640 KB |
testcase_01 | AC | 1 ms
6,820 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 | -- | - |
ソースコード
use std::collections::HashSet; use proconio::input; fn main() { input! { n:usize, mut a:[usize;n], } const D: usize = 60; let mut hists = vec![]; for i in 0..n { let mut hs = HashSet::new(); hs.insert(i); hists.push(hs); } let mut rank = 0; for col in 0..D { let Some(row)=(rank..n).find(|&row|a[row]&(1<<col)!=0)else{ continue; }; hists.swap(row, rank); a.swap(row, rank); for i in 0..n { if rank == i || a[i] & (1 << col) == 0 { continue; } a[i] ^= a[rank]; hists[i] = hists[i] .symmetric_difference(&hists[rank]) .copied() .collect::<HashSet<_>>(); } rank += 1; } if let Some(ind) = (0..n).find(|&i| a[i] == 0) { let ans = &hists[ind]; println!("{}", ans.len()); for bi in ans { print!("{} ", bi + 1); } println!(); } else { println!("-1"); } }