結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | mai |
提出日時 | 2021-04-22 01:48:55 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,258 bytes |
コンパイル時間 | 15,275 ms |
コンパイル使用メモリ | 400,132 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-07-04 06:08:58 |
合計ジャッジ時間 | 19,911 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 102 ms
12,928 KB |
testcase_08 | WA | - |
testcase_09 | AC | 105 ms
13,056 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 48 ms
7,040 KB |
testcase_13 | AC | 29 ms
6,940 KB |
testcase_14 | AC | 21 ms
6,944 KB |
testcase_15 | AC | 42 ms
6,940 KB |
testcase_16 | AC | 45 ms
6,940 KB |
testcase_17 | AC | 4 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 102 ms
12,664 KB |
testcase_29 | AC | 71 ms
8,704 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 46 ms
6,940 KB |
testcase_41 | AC | 39 ms
6,940 KB |
testcase_42 | AC | 38 ms
6,944 KB |
testcase_43 | AC | 52 ms
10,496 KB |
testcase_44 | AC | 53 ms
10,496 KB |
testcase_45 | AC | 52 ms
10,496 KB |
testcase_46 | AC | 66 ms
8,320 KB |
testcase_47 | AC | 81 ms
9,600 KB |
testcase_48 | AC | 74 ms
9,472 KB |
ソースコード
use std::{collections::*, io::Read}; fn take_token<R: std::io::BufRead>(cin: &mut R) -> String { cin.bytes() .map(|c| c.unwrap() as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect::<String>() } #[allow(unused)] macro_rules! scan { ($io:expr => $t:ty) => (take_token(&mut $io).parse::<$t>().unwrap()); ($io:expr => $t:tt * $n:expr) => ((0..$n).map(|_| scan!($io => $t)).collect::<Vec<_>>()); ($io:expr => $($t:tt),*) => (($(scan!($io => $t)),*)); ($io:expr => $($t:tt),* * $n:expr) => ((0..$n).map(|_| ($(scan!($io => $t)),*)).collect::<Vec<_>>()); } struct Graph<T: Clone = ()>(Vec<Vec<(usize, T)>>); impl<T: Clone> Graph<T> { fn to<'a>(&self, i: usize) -> &Vec<(usize, T)> { &(self.0)[i] } } struct GraphBuilder<T: Clone = ()>(Graph<T>); impl<T: Clone> GraphBuilder<T> { fn new(n: usize) -> Self { Self(Graph::<T>(vec![Vec::<(usize, T)>::new(); n])) } fn connect(&mut self, u: usize, v: usize, item: T) { (self.0 .0)[u].push((v, item.clone())); (self.0 .0)[v].push((u, item)); } fn build(self) -> Graph<T> { self.0 } } fn main() { solve(std::io::stdin().lock()) } fn solve<R: std::io::BufRead>(mut cin: R) { let (n, m) = scan!(cin => i32, i32); let mut builder = GraphBuilder::<i32>::new(n as usize); for _ in 0..m { let (u, v, m) = scan!(cin => i32, i32, i32); builder.connect((u - 1) as usize, (v - 1) as usize, m); } let graph = builder.build(); let mut visited = vec![(0, 0); n as usize]; let mut que = BinaryHeap::<(i32, usize)>::new(); que.push((i32::max_value(), 0)); visited[0] = (i32::max_value(), 0); while let Some((w, v)) = que.pop() { let d = visited[v].1; if v as i32 == n - 1 { println!("{} {}", w, d); return; } if visited[v].0 > w { continue; } for (v2, cap) in graph.to(v).iter() { let w2 = w.min(*cap); if visited[*v2].0 >= w2 { continue; } visited[*v2] = (w2, d + 1); que.push((w2, *v2)); } } panic!("non-connective"); // not }