結果
問題 | No.1752 Up-Down Tree |
ユーザー | akakimidori |
提出日時 | 2021-11-19 22:48:08 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,257 bytes |
コンパイル時間 | 13,058 ms |
コンパイル使用メモリ | 392,372 KB |
実行使用メモリ | 19,728 KB |
最終ジャッジ日時 | 2024-06-10 10:06:33 |
合計ジャッジ時間 | 14,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
13,684 KB |
testcase_01 | AC | 38 ms
13,560 KB |
testcase_02 | AC | 55 ms
19,728 KB |
testcase_03 | AC | 52 ms
19,724 KB |
testcase_04 | AC | 50 ms
16,640 KB |
testcase_05 | AC | 47 ms
15,620 KB |
testcase_06 | AC | 57 ms
18,188 KB |
testcase_07 | AC | 54 ms
18,188 KB |
testcase_08 | AC | 27 ms
10,596 KB |
testcase_09 | AC | 47 ms
16,732 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 22 ms
8,204 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 20 ms
7,992 KB |
testcase_18 | WA | - |
testcase_19 | AC | 56 ms
16,208 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
ソースコード
// ---------- begin chmin, chmax ---------- pub trait ChangeMinMax { fn chmin(&mut self, x: Self) -> bool; fn chmax(&mut self, x: Self) -> bool; } impl<T: PartialOrd> ChangeMinMax for T { fn chmin(&mut self, x: Self) -> bool { *self > x && { *self = x; true } } fn chmax(&mut self, x: Self) -> bool { *self < x && { *self = x; true } } } // ---------- end chmin, chmax ---------- // ---------- begin input macro ---------- // reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, bytes) => { read_value!($iter, String).bytes().collect::<Vec<u8>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } // ---------- end input macro ---------- fn run() { input! { n: usize, e: [(usize1, usize1); n - 1], } let mut g = vec![vec![]; n]; for (a, b) in e { g[a].push(b); g[b].push(a); } let mut topo = vec![0]; for i in 0..n { let v = topo[i]; for u in g[v].clone() { g[u].retain(|p| *p != v); topo.push(u); } } let mut dp = vec![std::collections::BinaryHeap::new(); n]; let mut half = vec![1; n]; let mut ans = 1; for &v in topo.iter().rev() { let mut a = vec![]; for &u in g[v].iter() { a.push((half[u], u)); } a.sort(); let mut next_half = a.iter().rev().next().map_or(0, |p| p.0); for &u in g[v].iter() { next_half.chmax(*dp[u].peek().unwrap() + 1 + a.iter().rev().find(|p| p.1 != u).map_or(0, |p| p.0)); } half[v] = next_half; let mut h = std::collections::BinaryHeap::new(); for &u in g[v].iter() { h.append(&mut dp[u]); } if h.len() > 1 { let a = h.pop().unwrap(); let b = h.pop().unwrap(); h.push(a + b + 1); } else { h.push(1); } dp[v] = h; } ans.chmax(half[0]); ans.chmax(*dp[0].peek().unwrap()); println!("{}", ans); } fn main() { run(); }