結果

問題 No.1308 ジャンプビーコン
ユーザー fukafukatanifukafukatani
提出日時 2020-12-27 10:19:39
言語 Rust
(1.77.0)
結果
AC  
実行時間 2,300 ms / 4,000 ms
コード長 4,187 bytes
コンパイル時間 2,801 ms
コンパイル使用メモリ 206,416 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-08 13:20:11
合計ジャッジ時間 41,394 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 1 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 3 ms
6,676 KB
testcase_11 AC 3 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 122 ms
6,676 KB
testcase_14 AC 124 ms
6,676 KB
testcase_15 AC 120 ms
6,676 KB
testcase_16 AC 119 ms
6,676 KB
testcase_17 AC 122 ms
6,676 KB
testcase_18 AC 2,232 ms
6,676 KB
testcase_19 AC 2,171 ms
6,676 KB
testcase_20 AC 2,077 ms
6,676 KB
testcase_21 AC 2,033 ms
6,676 KB
testcase_22 AC 2,042 ms
6,676 KB
testcase_23 AC 1 ms
6,676 KB
testcase_24 AC 2 ms
6,676 KB
testcase_25 AC 2 ms
6,676 KB
testcase_26 AC 1,569 ms
6,676 KB
testcase_27 AC 1,566 ms
6,676 KB
testcase_28 AC 1,607 ms
6,676 KB
testcase_29 AC 1,853 ms
6,676 KB
testcase_30 AC 2,006 ms
6,676 KB
testcase_31 AC 1,838 ms
6,676 KB
testcase_32 AC 2,016 ms
6,676 KB
testcase_33 AC 2,277 ms
6,676 KB
testcase_34 AC 1,579 ms
6,676 KB
testcase_35 AC 1,619 ms
6,676 KB
testcase_36 AC 1,714 ms
6,676 KB
testcase_37 AC 1,678 ms
6,676 KB
testcase_38 AC 2,300 ms
6,676 KB
testcase_39 AC 2,281 ms
6,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `q`
  --> Main.rs:20:13
   |
20 |     let (n, q, c) = (v[0] as usize, v[1] as usize, v[2]);
   |             ^ help: if this is intentional, prefix it with an underscore: `_q`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: unused variable: `i`
  --> Main.rs:24:9
   |
24 |     for i in 0..n - 1 {
   |         ^ help: if this is intentional, prefix it with an underscore: `_i`

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::<i64>();
    let (n, q, c) = (v[0] as usize, v[1] as usize, v[2]);

    let mut edges = vec![vec![]; n];
    let mut graph = vec![vec![]; n];
    for i in 0..n - 1 {
        let v = read_vec::<i64>();
        let (a, b, c) = (v[0] as usize - 1, v[1] as usize - 1, v[2]);
        edges[a].push(Edge { to: b, cost: c });
        edges[b].push(Edge { to: a, cost: c });
        graph[a].push(b);
        graph[b].push(a);
    }

    let x = read_vec::<usize>()
        .iter()
        .map(|&x| x - 1)
        .collect::<Vec<_>>();

    let mut dp = vec![std::i64::MAX; n];
    let mut cur = x[0];
    dp[cur] = 0;
    for to in x.into_iter().skip(1) {
        let d = solve(&edges, to);
        let mut next = vec![std::i64::MAX; n];
        for i in 0..n {
            if dp[i] == std::i64::MAX {
                continue;
            }
            next[i] = min(dp[i] + d[cur], dp[i] + c + d[i]);
        }

        let mut tree: Vec<Vec<usize>> = vec![Vec::new(); n];
        let mut parent_dict: HashMap<usize, usize> = HashMap::new();
        make_tree(to, n, &graph, &mut tree, &mut parent_dict);
        let mut topological_sorted_indexes = vec![to];
        topological_dfs(to, &tree, &mut topological_sorted_indexes);

        for &ti in topological_sorted_indexes.iter().rev() {
            if ti == to {
                break;
            }
            if next[ti] == std::i64::MAX {
                continue;
            }
            let x = parent_dict[&ti];
            next[x] = min(next[x], next[ti]);
        }
        // debug!(next);

        cur = to;
        dp = next;
    }
    let ans = dp.iter().min().unwrap();
    println!("{}", ans);
}

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()
}

fn make_tree(
    cur_idx: usize,
    parent_idx: usize,
    edges: &Vec<Vec<usize>>,
    tree: &mut Vec<Vec<usize>>,
    parent_dict: &mut HashMap<usize, usize>,
) {
    for child_idx in edges[cur_idx].iter() {
        if *child_idx == parent_idx {
            continue;
        }
        tree[cur_idx].push(*child_idx);
        parent_dict.insert(*child_idx, cur_idx);
        make_tree(*child_idx, cur_idx, edges, tree, parent_dict);
    }
}

fn topological_dfs(cur_idx: usize, tree: &Vec<Vec<usize>>, result: &mut Vec<usize>) {
    for child_idx in tree[cur_idx].iter() {
        result.push(*child_idx);
        topological_dfs(*child_idx, tree, result);
    }
}

type Cost = i64;

const INF: Cost = 100000_00000_00000;

#[derive(PartialEq, Debug)]
struct MinInt {
    value: Cost,
}

impl Eq for MinInt {}

impl PartialOrd for MinInt {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        other.value.partial_cmp(&self.value)
    }
}

impl Ord for MinInt {
    fn cmp(&self, other: &MinInt) -> Ordering {
        other.value.partial_cmp(&self.value).unwrap()
    }
}

fn make_pair(x: Cost, y: usize) -> (MinInt, usize) {
    (MinInt { value: x }, y)
}

#[derive(Debug, Clone)]
struct Edge {
    to: usize,
    cost: Cost,
}

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

    while let Some((u, v)) = que.pop() {
        if d[v] < u.value {
            continue;
        }
        for e in &edges[v] {
            if d[v] != INF && d[e.to] > d[v] + e.cost {
                d[e.to] = d[v] + e.cost;
                que.push(make_pair(d[e.to], e.to));
            }
        }
    }
    d
}
0