結果

問題 No.1607 Kth Maximum Card
ユーザー phsplsphspls
提出日時 2022-10-28 00:36:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 664 ms / 3,500 ms
コード長 1,850 bytes
コンパイル時間 12,542 ms
コンパイル使用メモリ 386,248 KB
実行使用メモリ 27,424 KB
最終ジャッジ日時 2024-07-05 08:41:38
合計ジャッジ時間 20,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 0 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 499 ms
27,424 KB
testcase_09 AC 346 ms
23,004 KB
testcase_10 AC 486 ms
27,364 KB
testcase_11 AC 55 ms
8,192 KB
testcase_12 AC 354 ms
22,144 KB
testcase_13 AC 37 ms
6,944 KB
testcase_14 AC 45 ms
6,940 KB
testcase_15 AC 255 ms
19,488 KB
testcase_16 AC 39 ms
6,940 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 146 ms
13,824 KB
testcase_19 AC 87 ms
9,616 KB
testcase_20 AC 121 ms
11,264 KB
testcase_21 AC 136 ms
12,472 KB
testcase_22 AC 425 ms
26,920 KB
testcase_23 AC 424 ms
26,800 KB
testcase_24 AC 114 ms
10,112 KB
testcase_25 AC 61 ms
7,296 KB
testcase_26 AC 76 ms
8,064 KB
testcase_27 AC 124 ms
10,368 KB
testcase_28 AC 100 ms
8,832 KB
testcase_29 AC 271 ms
16,684 KB
testcase_30 AC 664 ms
25,548 KB
testcase_31 AC 227 ms
15,244 KB
testcase_32 AC 92 ms
15,360 KB
testcase_33 AC 92 ms
15,488 KB
testcase_34 AC 96 ms
15,232 KB
testcase_35 AC 93 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::{BTreeSet, VecDeque};

const INF: usize = 1usize << 60;

fn main() {
    let mut nmk = String::new();
    std::io::stdin().read_line(&mut nmk).ok();
    let nmk: Vec<usize> = nmk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nmk[0];
    let m = nmk[1];
    let k = nmk[2];
    let mut paths = vec![vec![]; n];
    let mut costs = BTreeSet::new();
    for _ in 0..m {
        let mut temp = String::new();
        std::io::stdin().read_line(&mut temp).ok();
        let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let u = temp[0]-1;
        let v = temp[1]-1;
        let c = temp[2];
        paths[u].push((v, c));
        paths[v].push((u, c));
        costs.insert(c);
    }

    costs.insert(0);
    let costs = costs.into_iter().collect::<Vec<usize>>();
    let mut lower = 0usize;
    let mut upper = costs.len()-1;
    while upper > lower {
        let middle = (upper + lower) / 2;
        let mut dists = vec![INF; n];
        dists[0] = 0;
        let mut deque = VecDeque::new();
        deque.push_back((0, 0));
        while let Some((u, oc)) = deque.pop_front() {
            if dists[u] < oc { continue; }
            for &(v, c) in paths[u].iter() {
                let ncost = if c > costs[middle] { dists[u] + 1 } else { dists[u] };
                if dists[v] <= ncost { continue; }
                if c > costs[middle] {
                    dists[v] = ncost;
                    deque.push_back((v, dists[v]));
                } else {
                    dists[v] = ncost;
                    deque.push_front((v, dists[v]));
                }
            }
        }
        if dists[n-1] < k {
            upper = middle;
        } else {
            lower = middle + 1;
        }
    }
    println!("{}", costs[upper]);
}
0