結果
問題 | No.2895 Zero XOR Subset |
ユーザー | atcoder8 |
提出日時 | 2024-09-20 23:10:00 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,271 bytes |
コンパイル時間 | 14,167 ms |
コンパイル使用メモリ | 390,208 KB |
実行使用メモリ | 406,896 KB |
最終ジャッジ日時 | 2024-09-20 23:10:23 |
合計ジャッジ時間 | 18,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,940 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::BTreeMap; use proconio::input; fn main() { let answer = match solve() { Some(value) => format!( "{}\n{}", value.len(), value .iter() .map(|val| val.to_string()) .collect::<Vec<_>>() .join(" ") ), None => "-1".to_string(), }; println!("{}", answer); } fn solve() -> Option<Vec<usize>> { input! { n: usize, aa: [usize; n], } let mut pool = BTreeMap::from([(0_usize, 0_usize)]); for (i, &a) in aa.iter().enumerate() { let next_pool = pool .iter() .map(|(&value, &bits)| (value ^ a, bits | 1 << i)) .collect::<Vec<_>>(); for &(next_value, next_bits) in &next_pool { if pool.contains_key(&next_value) { let ans_bits = pool[&next_value] ^ next_bits; return Some( (0_usize..) .take_while(|&i| ans_bits >> i != 0) .filter(|&i| ans_bits >> i & 1 == 1) .map(|i| i + 1) .collect(), ); } } pool.extend(next_pool); } None }