結果
問題 | No.1667 Forest |
ユーザー | koba-e964 |
提出日時 | 2021-09-04 11:10:23 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 264 ms / 3,000 ms |
コード長 | 2,881 bytes |
コンパイル時間 | 14,747 ms |
コンパイル使用メモリ | 382,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-10 00:05:44 |
合計ジャッジ時間 | 15,369 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 264 ms
6,812 KB |
testcase_01 | AC | 262 ms
6,816 KB |
testcase_02 | AC | 257 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 260 ms
6,944 KB |
testcase_05 | AC | 151 ms
6,940 KB |
testcase_06 | AC | 90 ms
6,940 KB |
testcase_07 | AC | 56 ms
6,940 KB |
testcase_08 | AC | 28 ms
6,944 KB |
testcase_09 | AC | 17 ms
6,940 KB |
testcase_10 | AC | 9 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,940 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:tt),* )) => { ($(read_value!($next, $t)),*) }; ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, chars) => { read_value!($next, String).chars().collect::<Vec<char>>() }; ($next:expr, usize1) => (read_value!($next, usize) - 1); ($next:expr, [ $t:tt ]) => {{ let len = read_value!($next, usize); read_value!($next, [$t; len]) }}; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); } impl<T: PartialOrd> Change for T { fn chmax(&mut self, x: T) { if *self < x { *self = x; } } fn chmin(&mut self, x: T) { if *self > x { *self = x; } } } 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]); } }