結果

問題 No.1473 おでぶなおばけさん
ユーザー fukafukatanifukafukatani
提出日時 2021-04-09 21:46:51
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 3,485 bytes
コンパイル時間 13,397 ms
コンパイル使用メモリ 389,240 KB
実行使用メモリ 16,852 KB
最終ジャッジ日時 2024-06-25 04:54:28
合計ジャッジ時間 17,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 95 ms
15,528 KB
testcase_03 AC 60 ms
12,500 KB
testcase_04 AC 42 ms
9,804 KB
testcase_05 AC 14 ms
6,944 KB
testcase_06 AC 66 ms
12,352 KB
testcase_07 AC 82 ms
16,732 KB
testcase_08 AC 92 ms
16,788 KB
testcase_09 AC 86 ms
16,852 KB
testcase_10 AC 41 ms
6,940 KB
testcase_11 AC 41 ms
6,940 KB
testcase_12 AC 41 ms
6,940 KB
testcase_13 AC 27 ms
6,944 KB
testcase_14 AC 20 ms
6,940 KB
testcase_15 AC 38 ms
6,940 KB
testcase_16 AC 39 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 35 ms
6,944 KB
testcase_20 AC 49 ms
11,252 KB
testcase_21 AC 51 ms
7,888 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 65 ms
11,140 KB
testcase_27 WA -
testcase_28 AC 76 ms
16,436 KB
testcase_29 WA -
testcase_30 AC 53 ms
9,100 KB
testcase_31 AC 68 ms
16,144 KB
testcase_32 AC 46 ms
12,288 KB
testcase_33 AC 40 ms
10,880 KB
testcase_34 AC 24 ms
6,940 KB
testcase_35 AC 21 ms
6,940 KB
testcase_36 WA -
testcase_37 AC 58 ms
12,064 KB
testcase_38 WA -
testcase_39 AC 41 ms
6,940 KB
testcase_40 AC 40 ms
6,944 KB
testcase_41 AC 39 ms
6,940 KB
testcase_42 AC 39 ms
6,944 KB
testcase_43 AC 48 ms
11,016 KB
testcase_44 AC 47 ms
11,016 KB
testcase_45 AC 48 ms
11,012 KB
testcase_46 AC 50 ms
10,936 KB
testcase_47 AC 65 ms
12,908 KB
testcase_48 AC 57 ms
12,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `i`
  --> src/main.rs:22:9
   |
22 |     for i in 0..m {
   |         ^ help: if this is intentional, prefix it with an underscore: `_i`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: method `get_size` is never used
   --> src/main.rs:112:8
    |
89  | impl UnionFindTree {
    | ------------------ method in this implementation
...
112 |     fn get_size(&mut self, x: usize) -> usize {
    |        ^^^^^^^^
    |
    = note: `#[warn(dead_code)]` on by default

ソースコード

diff #

#![allow(unused_imports)]
use std::cmp::*;
use std::collections::*;
use std::io::Write;
use std::ops::Bound::*;

#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), std::io::stderr());
            writeln!(err, "{} = {:?}", e, $e).unwrap()
        })*
    };
}

fn main() {
    let v = read_vec::<usize>();
    let (n, m) = (v[0], v[1]);
    let mut edges = vec![];
    for i in 0..m {
        let v = read_vec::<i64>();
        let (a, b, d) = (v[0] as usize - 1, v[1] as usize - 1, v[2]);
        edges.push((d, a, b));
    }
    edges.sort();
    edges.reverse();
    let mut uft = UnionFindTree::new(n);
    let mut max_w = 0;
    let mut graph = vec![vec![]; n];
    for (d, a, b) in edges {
        uft.unite(a, b);
        graph[a].push((b, 1));
        graph[b].push((a, 1));
        if uft.same(0, n - 1) {
            max_w = d;
            break;
        }
    }
    let d = solve(&graph, 0);
    println!("{} {}", max_w, d[n - 1]);
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}

type Cost = i64;
const INF: Cost = 100000_00000_00000;

fn solve(edges: &Vec<Vec<(usize, Cost)>>, start_idx: usize) -> Vec<Cost> {
    let num_apexes = edges.len();
    let mut d = vec![INF; num_apexes];
    d[start_idx] = 0;
    let mut que = std::collections::BinaryHeap::new();
    que.push((std::cmp::Reverse(0), start_idx));

    while let Some((u, v)) = que.pop() {
        if d[v] < u.0 {
            continue;
        }
        for e in &edges[v] {
            if d[v] != INF && d[e.0] > d[v] + e.1 {
                d[e.0] = d[v] + e.1;
                que.push((std::cmp::Reverse(d[e.0]), e.0));
            }
        }
    }
    d
}

#[derive(Debug, Clone)]
struct UnionFindTree {
    parent: Vec<isize>,
    size: Vec<usize>,
    height: Vec<u64>,
}

impl UnionFindTree {
    fn new(n: usize) -> UnionFindTree {
        UnionFindTree {
            parent: vec![-1; n],
            size: vec![1usize; n],
            height: vec![0u64; n],
        }
    }

    fn find(&mut self, index: usize) -> usize {
        if self.parent[index] == -1 {
            return index;
        }
        let idx = self.parent[index] as usize;
        let ret = self.find(idx);
        self.parent[index] = ret as isize;
        ret
    }

    fn same(&mut self, x: usize, y: usize) -> bool {
        self.find(x) == self.find(y)
    }

    fn get_size(&mut self, x: usize) -> usize {
        let idx = self.find(x);
        self.size[idx]
    }

    fn unite(&mut self, index0: usize, index1: usize) -> bool {
        let a = self.find(index0);
        let b = self.find(index1);
        if a == b {
            false
        } else {
            if self.height[a] > self.height[b] {
                self.parent[b] = a as isize;
                self.size[a] += self.size[b];
            } else if self.height[a] < self.height[b] {
                self.parent[a] = b as isize;
                self.size[b] += self.size[a];
            } else {
                self.parent[b] = a as isize;
                self.size[a] += self.size[b];
                self.height[a] += 1;
            }
            true
        }
    }
}
0