結果

問題 No.2739 Time is money
ユーザー Yukino DX.Yukino DX.
提出日時 2024-05-02 23:34:02
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,996 bytes
コンパイル時間 12,560 ms
コンパイル使用メモリ 387,452 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-11-23 19:11:44
合計ジャッジ時間 18,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 46 ms
21,376 KB
testcase_03 AC 108 ms
27,136 KB
testcase_04 AC 43 ms
20,572 KB
testcase_05 AC 67 ms
19,840 KB
testcase_06 AC 87 ms
24,392 KB
testcase_07 AC 136 ms
35,584 KB
testcase_08 AC 147 ms
35,328 KB
testcase_09 AC 145 ms
34,812 KB
testcase_10 AC 88 ms
34,560 KB
testcase_11 AC 144 ms
34,792 KB
testcase_12 AC 91 ms
35,036 KB
testcase_13 AC 92 ms
35,016 KB
testcase_14 AC 85 ms
34,304 KB
testcase_15 AC 70 ms
29,440 KB
testcase_16 AC 69 ms
27,312 KB
testcase_17 AC 127 ms
33,408 KB
testcase_18 AC 128 ms
34,452 KB
testcase_19 AC 80 ms
29,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
//use itertools::{iproduct, Itertools};
use proconio::input;
use proconio::marker::*;
use std::collections::*;

fn main() {
    input! {
        n:usize,
        m:usize,
        x:usize,
        uvct:[(Usize1,Usize1,usize,usize);m],
    }

    let mut g = vec![vec![]; n];
    for &(u, v, c, t) in uvct.iter() {
        g[u].push((v, t * x + c));
        g[v].push((u, t * x + c));
    }

    let neigth = |crr_pos: usize, crr_dist: usize| {
        g[crr_pos]
            .iter()
            .map(|&(nxt_pos, cost)| (nxt_pos, crr_dist + cost))
            .collect::<Vec<_>>()
    };
    let dists = Dijkstra::new(neigth).solve(n, 0);

    if dists[n - 1] == INF {
        println!("-1");
    } else {
        let ans = (dists[n - 1] + x - 1) / x;
        println!("{}", ans);
    }
}

use dijkstra::*;
mod dijkstra {
    use std::cmp::Reverse;

    pub struct Dijkstra<F>
    where
        F: Fn(usize, usize) -> Vec<(usize, usize)>, //(crr_pos,crr_dist)->Vec<(nxt_pos,nxt_dist)>
    {
        neigh: F,
    }

    impl<F> Dijkstra<F>
    where
        F: Fn(usize, usize) -> Vec<(usize, usize)>,
    {
        pub fn new(neigh: F) -> Self {
            Self { neigh }
        }

        pub fn solve(&self, n: usize, start: usize) -> Vec<usize> {
            let mut dists = vec![INF; n];
            dists[start] = 0;
            let mut pq = std::collections::BinaryHeap::new();
            pq.push(Reverse((0, start)));
            while let Some(Reverse((crr_dist, crr_pos))) = pq.pop() {
                if dists[crr_pos] < crr_dist {
                    continue;
                }
                for (nxt_pos, nxt_dist) in (self.neigh)(crr_pos, crr_dist) {
                    if nxt_dist < dists[nxt_pos] {
                        dists[nxt_pos] = nxt_dist;
                        pq.push(Reverse((nxt_dist, nxt_pos)));
                    }
                }
            }

            dists
        }
    }

    pub const INF: usize = std::usize::MAX;
}
0