結果
問題 | No.1667 Forest |
ユーザー | koba-e964 |
提出日時 | 2021-09-11 14:17:34 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 238 ms / 3,000 ms |
コード長 | 2,161 bytes |
コンパイル時間 | 17,713 ms |
コンパイル使用メモリ | 379,104 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-22 22:14:13 |
合計ジャッジ時間 | 19,574 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 238 ms
5,248 KB |
testcase_01 | AC | 237 ms
5,248 KB |
testcase_02 | AC | 230 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 229 ms
5,376 KB |
testcase_05 | AC | 132 ms
5,376 KB |
testcase_06 | AC | 80 ms
5,376 KB |
testcase_07 | AC | 49 ms
5,376 KB |
testcase_08 | AC | 24 ms
5,376 KB |
testcase_09 | AC | 14 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
ソースコード
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { ($($r:tt)*) => { let stdin = std::io::stdin(); let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock())); let mut next = move || -> String{ bytes.by_ref().map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() }; input_inner!{next, $($r)*} }; } macro_rules! input_inner { ($next:expr) => {}; ($next:expr,) => {}; ($next:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } macro_rules! read_value { ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } fn powmod(x: i64, mut e: i64, m: i64) -> i64 { let mut sum = 1; let mut cur = x % m; while e > 0 { if e % 2 != 0 { sum = sum * cur % m; } cur = cur * cur % m; e /= 2; } sum } fn fact_init(w: usize, mo: i64) -> (Vec<i64>, Vec<i64>) { let mut fac = vec![1; w]; let mut invfac = vec![0; w]; for i in 1..w { fac[i] = fac[i - 1] * i as i64 % mo; } invfac[w - 1] = powmod(fac[w - 1], mo - 2, mo); for i in (0..w - 1).rev() { invfac[i] = invfac[i + 1] * (i as i64 + 1) % mo; } (fac, invfac) } fn main() { input!(n: usize, mo: i64); let (fac, invfac) = fact_init(n + 1, mo); let mut tree = vec![0; n + 1]; tree[1] = 1; for i in 2..n + 1 { tree[i] = powmod(i as i64, i as i64 - 2, mo); } let mut dp = vec![vec![0; n + 1]; n + 1]; dp[0][0] = 1; for i in 1..n + 1 { for l in 0..i + 1 { let mut tmp = 0; for j in 1..std::cmp::min(i, l + 1) + 1 { tmp = (tmp + tree[j] * dp[i - j][l - (j - 1)] % mo * fac[i - 1] % mo * invfac[i - j] % mo * invfac[j - 1]) % mo; } dp[i][l] = tmp; } } for i in 0..n { println!("{}", dp[n][i]); } }