結果
問題 | No.807 umg tours |
ユーザー | phspls |
提出日時 | 2022-12-23 23:54:50 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 480 ms / 4,000 ms |
コード長 | 1,632 bytes |
コンパイル時間 | 14,299 ms |
コンパイル使用メモリ | 379,892 KB |
実行使用メモリ | 24,960 KB |
最終ジャッジ日時 | 2024-11-18 04:44:45 |
合計ジャッジ時間 | 19,828 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 188 ms
13,824 KB |
testcase_12 | AC | 265 ms
16,000 KB |
testcase_13 | AC | 333 ms
18,304 KB |
testcase_14 | AC | 130 ms
10,112 KB |
testcase_15 | AC | 95 ms
8,320 KB |
testcase_16 | AC | 323 ms
18,432 KB |
testcase_17 | AC | 480 ms
23,936 KB |
testcase_18 | AC | 456 ms
23,552 KB |
testcase_19 | AC | 423 ms
22,784 KB |
testcase_20 | AC | 253 ms
17,408 KB |
testcase_21 | AC | 270 ms
18,048 KB |
testcase_22 | AC | 98 ms
9,088 KB |
testcase_23 | AC | 76 ms
7,552 KB |
testcase_24 | AC | 221 ms
22,272 KB |
testcase_25 | AC | 457 ms
24,960 KB |
ソースコード
use std::{cmp::Reverse, collections::BinaryHeap}; const INF: usize = 1usize << 60; fn dijkstra(start: usize, paths: &Vec<Vec<(usize, usize)>>) -> Vec<Vec<usize>> { let n = paths.len(); let mut que = BinaryHeap::new(); que.push((Reverse(0), start, 0)); let mut costs = vec![vec![INF; 2]; n]; costs[start][0] = 0; costs[start][1] = 0; while let Some((Reverse(cost), u, depth)) = que.pop() { if cost > costs[u][depth] { continue; } for &(v, w) in paths[u].iter() { if costs[u][depth] + w < costs[v][depth] { costs[v][depth] = costs[u][depth] + w; que.push((Reverse(costs[v][depth]), v, depth)); } if depth == 0 && costs[u][0] < costs[v][1] { costs[v][1] = costs[u][0]; que.push((Reverse(costs[v][1]), v, 1)); } } } costs } fn main() { let mut nm = String::new(); std::io::stdin().read_line(&mut nm).ok(); let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let n = nm[0]; let m = nm[1]; let mut paths = vec![vec![]; n]; for _ in 0..m { let mut temp = String::new(); std::io::stdin().read_line(&mut temp).ok(); let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let a = temp[0]-1; let b = temp[1]-1; let c = temp[2]; paths[a].push((b, c)); paths[b].push((a, c)); } let dists = dijkstra(0, &paths); for i in 0..n { println!("{}", dists[i].iter().sum::<usize>()); } }