結果

問題 No.1473 おでぶなおばけさん
ユーザー taotao54321taotao54321
提出日時 2021-04-15 03:34:48
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,693 bytes
コンパイル時間 12,690 ms
コンパイル使用メモリ 399,688 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-01 02:11:39
合計ジャッジ時間 48,146 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1,536 ms
14,592 KB
testcase_03 WA -
testcase_04 AC 867 ms
8,832 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,632 ms
15,104 KB
testcase_08 WA -
testcase_09 AC 1,647 ms
14,976 KB
testcase_10 AC 20 ms
7,808 KB
testcase_11 WA -
testcase_12 AC 23 ms
8,704 KB
testcase_13 AC 9 ms
6,944 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 12 ms
7,808 KB
testcase_16 AC 18 ms
7,168 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 511 ms
10,112 KB
testcase_22 AC 1,202 ms
11,904 KB
testcase_23 AC 1,204 ms
11,264 KB
testcase_24 AC 987 ms
10,240 KB
testcase_25 AC 1,114 ms
12,416 KB
testcase_26 AC 1,068 ms
12,544 KB
testcase_27 AC 173 ms
6,940 KB
testcase_28 AC 1,603 ms
14,848 KB
testcase_29 AC 723 ms
10,624 KB
testcase_30 AC 814 ms
11,904 KB
testcase_31 AC 1,549 ms
14,300 KB
testcase_32 WA -
testcase_33 AC 1,020 ms
10,752 KB
testcase_34 AC 524 ms
6,940 KB
testcase_35 AC 378 ms
6,944 KB
testcase_36 AC 435 ms
8,832 KB
testcase_37 AC 1,102 ms
11,008 KB
testcase_38 AC 114 ms
6,940 KB
testcase_39 AC 19 ms
7,296 KB
testcase_40 AC 19 ms
7,296 KB
testcase_41 AC 10 ms
6,940 KB
testcase_42 AC 10 ms
6,940 KB
testcase_43 AC 799 ms
12,288 KB
testcase_44 AC 803 ms
12,416 KB
testcase_45 AC 803 ms
12,288 KB
testcase_46 AC 917 ms
9,856 KB
testcase_47 AC 1,112 ms
11,648 KB
testcase_48 AC 1,100 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(clippy::many_single_char_names)]

use std::cmp::Reverse;
use std::collections::BinaryHeap;
use std::io::Read as _;

macro_rules! chmax {
    ($xmax:expr, $x:expr) => {{
        if $xmax < $x {
            $xmax = $x;
            true
        } else {
            false
        }
    }};
}

fn solve(n: usize, graph: &[Vec<(usize, u32)>]) -> (u32, u32) {
    let mut bests = vec![(0, Reverse(u32::MAX)); n];
    let mut que = BinaryHeap::new();
    bests[0] = (u32::MAX, Reverse(0));
    que.push((u32::MAX, Reverse(0), 0));

    while !que.is_empty() {
        let (w, Reverse(k), s) = que.pop().unwrap();
        if (w, Reverse(k)) < bests[s] {
            continue;
        }
        dbg!((s, w, k));

        for &(t, d) in &graph[s] {
            let w_new = w.min(d);
            let k_new = k + 1;
            if chmax!(bests[t], (w_new, Reverse(k_new))) {
                que.push((w_new, Reverse(k_new), t));
            }
        }
    }

    let (ans_w, Reverse(ans_k)) = bests[n - 1];
    (ans_w, ans_k)
}

fn main() {
    let mut input = String::new();
    std::io::stdin().read_to_string(&mut input).unwrap();

    let mut tokens = input.split_ascii_whitespace();
    macro_rules! read {
        ($ty:ty) => {{
            tokens.next().unwrap().parse::<$ty>().unwrap()
        }};
    }

    let n = read!(usize);
    let m = read!(usize);

    let mut graph: Vec<Vec<(usize, u32)>> = vec![vec![]; n];
    for _ in 0..m {
        let s = read!(usize) - 1;
        let t = read!(usize) - 1;
        let d = read!(u32);
        graph[s].push((t, d));
        graph[t].push((s, d));
    }

    let (ans_w, ans_k) = solve(n, &graph);

    println!("{} {}", ans_w, ans_k);
}
0