結果

問題 No.2739 Time is money
ユーザー t33ft33f
提出日時 2024-04-21 11:08:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 11,923 ms
コンパイル使用メモリ 384,528 KB
実行使用メモリ 33,688 KB
最終ジャッジ日時 2024-10-13 09:50:10
合計ジャッジ時間 16,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 52 ms
20,352 KB
testcase_03 AC 103 ms
25,344 KB
testcase_04 AC 50 ms
19,480 KB
testcase_05 AC 66 ms
18,560 KB
testcase_06 AC 80 ms
23,064 KB
testcase_07 AC 148 ms
33,688 KB
testcase_08 AC 153 ms
33,280 KB
testcase_09 AC 145 ms
32,640 KB
testcase_10 AC 90 ms
32,896 KB
testcase_11 AC 149 ms
32,808 KB
testcase_12 AC 100 ms
33,408 KB
testcase_13 AC 104 ms
33,472 KB
testcase_14 AC 85 ms
32,652 KB
testcase_15 AC 59 ms
25,448 KB
testcase_16 AC 60 ms
25,216 KB
testcase_17 AC 135 ms
31,176 KB
testcase_18 AC 126 ms
32,128 KB
testcase_19 AC 74 ms
25,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]
use std::collections::BinaryHeap;
use proconio::{input};

fn main() {
    input!{
        n: usize, m: usize, x: u64,
        es: [(usize, usize, u64, u64); m]
    }
    let mut adj = vec![Vec::new(); n];
    for (u, v, c, t) in es {
        adj[u - 1].push((v - 1, c + t * x));
        adj[v - 1].push((u - 1, c + t * x));
    }
    let mut dist = vec![u64::MAX; n];
    dist[0] = 0;
    let mut pq = BinaryHeap::new();
    pq.push((0, 0));
    while let Some((d, u)) = pq.pop() {
        if (-d) as u64 > dist[u] { continue; }
        for (v, c) in &adj[u] {
            let d1 = (-d) as u64 + c;
            if d1 < dist[*v] {
                dist[*v] = d1;
                pq.push((-(d1 as i64), *v));
            }
        }
    }

    if dist[n - 1] == u64::MAX {
        println!("-1");
    } else {
        println!("{}", (dist[n - 1] + x - 1) / x);
    }
}
0