結果

問題 No.2916 累進コスト最小化
ユーザー atcoder8atcoder8
提出日時 2024-10-04 22:14:05
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 419 ms / 3,500 ms
コード長 1,850 bytes
コンパイル時間 12,600 ms
コンパイル使用メモリ 378,148 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 01:06:49
合計ジャッジ時間 17,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 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 1 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 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 0 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 133 ms
5,248 KB
testcase_25 AC 151 ms
5,248 KB
testcase_26 AC 362 ms
5,248 KB
testcase_27 AC 373 ms
5,248 KB
testcase_28 AC 348 ms
5,248 KB
testcase_29 AC 386 ms
5,248 KB
testcase_30 AC 255 ms
5,248 KB
testcase_31 AC 318 ms
5,248 KB
testcase_32 AC 414 ms
5,248 KB
testcase_33 AC 419 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{borrow::Cow, cmp::Reverse, collections::BinaryHeap};

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

fn main() {
    input! {
        (num_islands, num_edges, max_c): (usize, usize, usize),
        ijrm: [(Usize1, Usize1, usize, usize); num_edges],
    }

    let mut graph = vec![vec![]; num_islands];
    for &(i, j, r, m) in &ijrm {
        graph[i].push(Edge {
            from: i,
            to: j,
            denom: r,
            base_cost: m,
        });
        graph[j].push(Edge {
            from: j,
            to: i,
            denom: r,
            base_cost: m,
        });
    }

    let solve = |init_money: usize| {
        let mut sum_costs: Vec<Option<usize>> = vec![None; num_islands];
        let mut heap = BinaryHeap::from([(Reverse(0_usize), 0_usize)]);
        while let Some((Reverse(sum_cost), cur)) = heap.pop() {
            if sum_costs[cur].is_some() {
                continue;
            }

            sum_costs[cur] = Some(sum_cost);

            let next_node_iter = graph[cur].iter().filter_map(|edge| {
                let next_cost = sum_cost + (init_money - sum_cost) / edge.denom + edge.base_cost;
                if next_cost <= init_money {
                    Some((Reverse(next_cost), edge.to))
                } else {
                    None
                }
            });
            heap.extend(next_node_iter);
        }

        sum_costs[num_islands - 1].map(|sum_cost| init_money - sum_cost)
    };

    for c in 1..=max_c {
        let ans = solve(c);
        println!(
            "{}",
            match ans {
                Some(rem) => rem.to_string().into(),
                None => Cow::Borrowed("-1"),
            }
        );
    }
}

#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
struct Edge {
    from: usize,
    to: usize,
    denom: usize,
    base_cost: usize,
}
0