結果
問題 | No.137 貯金箱の焦り |
ユーザー | akakimidori |
提出日時 | 2021-01-28 15:42:49 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 154 ms / 5,000 ms |
コード長 | 1,092 bytes |
コンパイル時間 | 13,411 ms |
コンパイル使用メモリ | 383,496 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 23:48:49 |
合計ジャッジ時間 | 15,523 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
fn read() -> (usize, Vec<usize>) { use std::io::*; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); let mut it = s.trim().split_whitespace(); let mut next = || it.next().unwrap(); let n: usize = next().parse().unwrap(); let m: usize = next().parse().unwrap(); (m, (0..n).flat_map(|_| next().parse()).collect()) } fn main() { let (mut m, a) = read(); const MOD: u32 = 1_234_567_891; let mut dp = vec![1]; while m > 0 { for &a in a.iter() { let mut next = vec![0u32; dp.len() + a]; next[..dp.len()].clone_from_slice(&dp); for (next, dp) in next[a..].iter_mut().zip(dp.iter()) { *next += *dp; } dp = next; for dp in dp.iter_mut() { *dp %= MOD; } } let mut next = vec![]; for (i, dp) in dp.iter().enumerate() { if i & 1 == m & 1 { next.push(*dp); } } dp = next; m >>= 1; } println!("{}", dp[0]); }