結果

問題 No.1344 Typical Shortest Path Sum
ユーザー tonyu0tonyu0
提出日時 2021-01-16 18:23:45
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 12,505 ms
コンパイル使用メモリ 379,912 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 22:57:24
合計ジャッジ時間 15,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 77
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;
const INF: i64 = 1i64 << 60;
fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let m: usize = itr.next().unwrap().parse().unwrap();
    let mut d = vec![vec![INF; n]; n];
    for i in 0..n {
        d[i][i] = 0;
    }
    for _ in 0..m {
        let s = itr.next().unwrap().parse::<usize>().unwrap() - 1;
        let t = itr.next().unwrap().parse::<usize>().unwrap() - 1;
        let x: i64 = itr.next().unwrap().parse().unwrap();
        d[s][t] = std::cmp::min(d[s][t], x);
    }
    for k in 0..n {
        for i in 0..n {
            for j in 0..n {
                if d[i][k] != INF && d[k][j] != INF && d[i][j] > d[i][k] + d[k][j] {
                    d[i][j] = d[i][k] + d[k][j];
                }
            }
        }
    }
    for i in 0..n {
        let mut ans = 0i64;
        for j in 0..n {
            if d[i][j] != INF {
                ans += d[i][j];
            }
        }
        println!("{}", ans);
    }
}
0