結果

問題 No.1473 おでぶなおばけさん
ユーザー fukafukatanifukafukatani
提出日時 2021-04-09 21:46:51
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 3,485 bytes
コンパイル時間 3,760 ms
コンパイル使用メモリ 157,524 KB
実行使用メモリ 16,816 KB
最終ジャッジ日時 2023-09-07 10:42:03
合計ジャッジ時間 7,588 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 93 ms
15,436 KB
testcase_03 AC 59 ms
12,392 KB
testcase_04 AC 45 ms
9,652 KB
testcase_05 AC 14 ms
4,404 KB
testcase_06 AC 72 ms
12,312 KB
testcase_07 AC 96 ms
16,772 KB
testcase_08 AC 108 ms
16,692 KB
testcase_09 AC 99 ms
16,816 KB
testcase_10 AC 41 ms
5,276 KB
testcase_11 AC 41 ms
5,248 KB
testcase_12 AC 41 ms
5,244 KB
testcase_13 AC 27 ms
4,376 KB
testcase_14 AC 20 ms
4,376 KB
testcase_15 AC 38 ms
5,252 KB
testcase_16 AC 39 ms
5,252 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 5 ms
4,376 KB
testcase_19 AC 36 ms
5,436 KB
testcase_20 AC 55 ms
11,144 KB
testcase_21 AC 52 ms
7,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 67 ms
11,212 KB
testcase_27 WA -
testcase_28 AC 84 ms
16,548 KB
testcase_29 WA -
testcase_30 AC 56 ms
9,204 KB
testcase_31 AC 90 ms
16,232 KB
testcase_32 AC 53 ms
12,224 KB
testcase_33 AC 45 ms
10,708 KB
testcase_34 AC 26 ms
6,728 KB
testcase_35 AC 23 ms
5,648 KB
testcase_36 WA -
testcase_37 AC 67 ms
12,112 KB
testcase_38 WA -
testcase_39 AC 40 ms
5,236 KB
testcase_40 AC 40 ms
5,268 KB
testcase_41 AC 39 ms
5,204 KB
testcase_42 AC 40 ms
5,216 KB
testcase_43 AC 47 ms
11,080 KB
testcase_44 AC 47 ms
11,020 KB
testcase_45 AC 48 ms
11,084 KB
testcase_46 AC 61 ms
11,056 KB
testcase_47 AC 81 ms
12,812 KB
testcase_48 AC 64 ms
12,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `i`
  --> 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: associated function `get_size` is never used
   --> Main.rs:112:8
    |
112 |     fn get_size(&mut self, x: usize) -> usize {
    |        ^^^^^^^^
    |
    = note: `#[warn(dead_code)]` on by default

warning: 2 warnings emitted

ソースコード

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