結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | Strorkis |
提出日時 | 2021-04-09 22:28:18 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 2,118 bytes |
コンパイル時間 | 11,895 ms |
コンパイル使用メモリ | 378,512 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-06-25 06:04:51 |
合計ジャッジ時間 | 15,795 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 112 ms
14,080 KB |
testcase_03 | AC | 57 ms
12,160 KB |
testcase_04 | AC | 70 ms
8,576 KB |
testcase_05 | AC | 29 ms
5,376 KB |
testcase_06 | AC | 109 ms
12,416 KB |
testcase_07 | AC | 91 ms
14,720 KB |
testcase_08 | AC | 156 ms
14,720 KB |
testcase_09 | AC | 89 ms
14,720 KB |
testcase_10 | AC | 18 ms
7,808 KB |
testcase_11 | AC | 20 ms
9,344 KB |
testcase_12 | AC | 17 ms
8,576 KB |
testcase_13 | AC | 12 ms
5,888 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 16 ms
7,808 KB |
testcase_16 | AC | 16 ms
7,168 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 27 ms
7,296 KB |
testcase_20 | AC | 43 ms
10,752 KB |
testcase_21 | AC | 55 ms
9,472 KB |
testcase_22 | AC | 41 ms
11,520 KB |
testcase_23 | AC | 33 ms
10,880 KB |
testcase_24 | AC | 31 ms
10,112 KB |
testcase_25 | AC | 87 ms
12,140 KB |
testcase_26 | AC | 88 ms
12,144 KB |
testcase_27 | AC | 19 ms
5,504 KB |
testcase_28 | AC | 115 ms
14,592 KB |
testcase_29 | AC | 49 ms
9,984 KB |
testcase_30 | AC | 75 ms
11,264 KB |
testcase_31 | AC | 70 ms
13,824 KB |
testcase_32 | AC | 71 ms
12,544 KB |
testcase_33 | AC | 52 ms
10,368 KB |
testcase_34 | AC | 30 ms
6,272 KB |
testcase_35 | AC | 22 ms
6,272 KB |
testcase_36 | AC | 43 ms
8,704 KB |
testcase_37 | AC | 70 ms
10,880 KB |
testcase_38 | AC | 10 ms
5,376 KB |
testcase_39 | AC | 16 ms
7,296 KB |
testcase_40 | AC | 14 ms
7,296 KB |
testcase_41 | AC | 16 ms
6,488 KB |
testcase_42 | AC | 14 ms
6,528 KB |
testcase_43 | AC | 27 ms
11,828 KB |
testcase_44 | AC | 27 ms
11,700 KB |
testcase_45 | AC | 26 ms
11,696 KB |
testcase_46 | AC | 34 ms
9,600 KB |
testcase_47 | AC | 57 ms
11,264 KB |
testcase_48 | AC | 54 ms
11,008 KB |
ソースコード
use std::collections::BinaryHeap; use std::cmp::Reverse; const INF: u32 = 1 << 30; fn run<'a, I: Iterator<Item = &'a str>>(mut scanner: I) { macro_rules! scan { ([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::<Vec<_>>()); (($($t:tt),*)) => (($(scan!($t)),*)); ([$($t:tt),*]) => ([$(scan!($t)),*]); (Usize1) => (scan!(usize) - 1); (Bytes) => (scan!(String).into_bytes()); ($t:ty) => (scanner.next().unwrap().parse::<$t>().unwrap()); } macro_rules! input { ($($($v:ident)* : $t:tt),* $(,)?) => ($(let $($v)* = scan!($t);)*); } input! { n: usize, m: usize, } let mut g = vec![vec![]; n]; for _ in 0..m { input! { s: Usize1, t: Usize1, d: u32, } g[s].push((t, d)); g[t].push((s, d)); } let (mut l, mut r) = (0, INF); while r - l > 1 { let w = (l + r) / 2; let mut stack = Vec::new(); stack.push(0); let mut used = vec![false; n]; used[0] = true; while let Some(from) = stack.pop() { for &(to, d) in &g[from] { if w > d || used[to] { continue; } stack.push(to); used[to] = true; } } if *used.last().unwrap() { l = w; } else { r = w; } } let w = l; let mut dist = vec![INF; n]; let mut heap = BinaryHeap::new(); dist[0] = 0; heap.push((Reverse(0), 0)); while let Some((Reverse(cost), from)) = heap.pop() { if dist[from] < cost { continue; } for &(to, d) in &g[from] { if w > d { continue; } let next_cost = cost + 1; if next_cost < dist[to] { dist[to] = next_cost; heap.push((Reverse(next_cost), to)); } } } println!("{} {}", w, dist.last().unwrap()); } fn main() { let ref mut buf = Vec::new(); std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok(); run(std::str::from_utf8(buf).unwrap().split_whitespace()); }