結果

問題 No.2739 Time is money
ユーザー tipstar0125tipstar0125
提出日時 2024-04-20 17:10:12
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,991 bytes
コンパイル時間 14,951 ms
コンパイル使用メモリ 378,024 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-10-12 13:03:12
合計ジャッジ時間 17,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 68 ms
25,040 KB
testcase_03 AC 158 ms
31,796 KB
testcase_04 AC 67 ms
23,936 KB
testcase_05 AC 100 ms
23,232 KB
testcase_06 AC 120 ms
28,964 KB
testcase_07 AC 226 ms
42,056 KB
testcase_08 AC 208 ms
41,720 KB
testcase_09 AC 203 ms
41,128 KB
testcase_10 AC 125 ms
40,584 KB
testcase_11 AC 230 ms
41,056 KB
testcase_12 AC 139 ms
41,404 KB
testcase_13 AC 143 ms
41,264 KB
testcase_14 AC 134 ms
40,544 KB
testcase_15 AC 69 ms
33,332 KB
testcase_16 AC 76 ms
31,816 KB
testcase_17 AC 183 ms
39,448 KB
testcase_18 AC 186 ms
40,556 KB
testcase_19 AC 106 ms
33,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]
#![allow(unused_imports)]
#![allow(unused_macros)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::comparison_chain)]
#![allow(clippy::nonminimal_bool)]
#![allow(clippy::neg_multiply)]
#![allow(dead_code)]
// use itertools::Itertools;
use std::cmp::Reverse;
use std::collections::{BTreeMap, BTreeSet, BinaryHeap, VecDeque};
// use superslice::Ext;
// use bitset_fixed::BitSet;

use proconio::{
    input,
    marker::{Chars, Usize1},
};

#[derive(Default)]
struct Solver {}
impl Solver {
    // #[fastout]
    fn solve(&mut self) {
        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, c, t));
            G[v].push((u, c, t));
        }

        let INF = 1_usize << 60;
        let mut dist = vec![INF; N];
        dist[0] = 0;
        let mut Q = BinaryHeap::new();
        Q.push((Reverse(0), 0, 0));
        while let Some((Reverse(d), pos, money)) = Q.pop() {
            if dist[pos] != d {
                continue;
            }
            for &(nxt, c, t) in &G[pos] {
                let tt = if c <= money {
                    0
                } else {
                    (c - money + X - 1) / X
                };
                let dd = t + tt;
                let next_money = tt * X + money - c;
                if dist[pos] + dd < dist[nxt] {
                    dist[nxt] = dist[pos] + dd;
                    Q.push((Reverse(dist[nxt]), nxt, next_money));
                }
            }
        }
        let ans = dist[N - 1];
        if ans == INF {
            println!("-1");
        } else {
            println!("{}", ans);
        }
    }
}

fn main() {
    std::thread::Builder::new()
        .stack_size(128 * 1024 * 1024)
        .spawn(|| Solver::default().solve())
        .unwrap()
        .join()
        .unwrap();
}
0