結果

問題 No.1473 おでぶなおばけさん
ユーザー fukafukatanifukafukatani
提出日時 2021-04-09 21:49:20
言語 Rust
(1.72.1)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 3,568 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 154,500 KB
実行使用メモリ 17,608 KB
最終ジャッジ日時 2023-09-07 10:49:48
合計ジャッジ時間 6,903 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 89 ms
16,280 KB
testcase_03 AC 60 ms
13,168 KB
testcase_04 AC 45 ms
10,156 KB
testcase_05 AC 15 ms
4,436 KB
testcase_06 AC 64 ms
12,856 KB
testcase_07 AC 89 ms
17,608 KB
testcase_08 AC 101 ms
17,520 KB
testcase_09 AC 88 ms
17,592 KB
testcase_10 AC 41 ms
5,196 KB
testcase_11 AC 41 ms
5,188 KB
testcase_12 AC 40 ms
5,232 KB
testcase_13 AC 27 ms
4,380 KB
testcase_14 AC 19 ms
4,384 KB
testcase_15 AC 37 ms
5,224 KB
testcase_16 AC 38 ms
5,204 KB
testcase_17 AC 3 ms
4,380 KB
testcase_18 AC 5 ms
4,384 KB
testcase_19 AC 34 ms
5,392 KB
testcase_20 AC 54 ms
11,700 KB
testcase_21 AC 52 ms
8,056 KB
testcase_22 AC 76 ms
14,168 KB
testcase_23 AC 65 ms
13,440 KB
testcase_24 AC 63 ms
12,228 KB
testcase_25 AC 76 ms
13,532 KB
testcase_26 AC 77 ms
13,492 KB
testcase_27 AC 26 ms
5,768 KB
testcase_28 AC 85 ms
17,296 KB
testcase_29 AC 47 ms
8,680 KB
testcase_30 AC 55 ms
9,488 KB
testcase_31 AC 89 ms
16,940 KB
testcase_32 AC 51 ms
13,020 KB
testcase_33 AC 45 ms
11,260 KB
testcase_34 AC 24 ms
6,980 KB
testcase_35 AC 23 ms
5,932 KB
testcase_36 AC 50 ms
9,420 KB
testcase_37 AC 64 ms
12,672 KB
testcase_38 AC 10 ms
4,380 KB
testcase_39 AC 41 ms
5,292 KB
testcase_40 AC 41 ms
5,292 KB
testcase_41 AC 40 ms
5,212 KB
testcase_42 AC 39 ms
5,212 KB
testcase_43 AC 48 ms
12,032 KB
testcase_44 AC 48 ms
12,088 KB
testcase_45 AC 47 ms
12,096 KB
testcase_46 AC 53 ms
11,272 KB
testcase_47 AC 63 ms
13,380 KB
testcase_48 AC 59 ms
13,104 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:118:8
    |
118 |     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;

    for &(d, a, b) in &edges {
        uft.unite(a, b);
        if uft.same(0, n - 1) {
            max_w = d;
            break;
        }
    }

    let mut graph = vec![vec![]; n];
    for &(d, a, b) in &edges {
        if d >= max_w {
            graph[a].push((b, 1));
            graph[b].push((a, 1));
        }
    }
    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