結果

問題 No.160 最短経路のうち辞書順最小
ユーザー negnatnegnat
提出日時 2022-03-01 14:48:15
言語 Rust
(1.77.0)
結果
MLE  
実行時間 -
コード長 4,322 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 157,280 KB
実行使用メモリ 809,280 KB
最終ジャッジ日時 2023-09-22 04:04:14
合計ジャッジ時間 6,046 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 271 ms
176,480 KB
testcase_05 MLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::binary_heap::BinaryHeap;
use std::cmp::{Ordering, Reverse};

macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        let mut next = || { iter.next().unwrap() };
        input_inner!{next, $($r)*}
    };
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes
                .by_ref()
                .map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr, ) => {};

    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => {
        ( $(read_value!($next, $t)),* )
    };

    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };

    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };

    ($next:expr, usize1) => {
        read_value!($next, usize) - 1
    };

    ($next:expr, $t:ty) => {
        $next().parse::<$t>().expect("Parse error")
    };
}

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

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
struct Node {
    id: usize,
    cost: i32,
    prev: Option<usize>,
}

#[derive(Debug)]
struct Graph {
    nodes: Vec<Node>,
    edges: Vec<Vec<Edge>>,
}

impl Graph {
    fn new(n_nodes: usize) -> Self {
        let mut nodes = Vec::with_capacity(n_nodes);
        let edges = vec![Vec::new(); n_nodes];

        for i in 0..n_nodes {
            nodes.push(Node { id: i, cost: i32::MAX, prev: None })
        }

        Self {
            nodes,
            edges,
        }
    }

    fn add_edge(&mut self, from: usize, to: usize, cost: i32) {
        self.edges[from].push(Edge { to, cost });
        self.edges[to].push(Edge { to: from, cost });
    }
}

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

impl Ord for Node {
    fn cmp(&self, other: &Self) -> Ordering {
        self.cost.cmp(&other.cost)
    }
}

fn dijkstra(graph: &mut Graph, from: usize, to: usize) {
    let mut heap = BinaryHeap::new();
    let mut visited = vec![false; graph.nodes.len()];

    graph.nodes[from].cost = 0;
    heap.push(Reverse(graph.nodes[from]));

    while let Some(Reverse(node)) = heap.pop() {
        visited[node.id] = true;

        if node.id == to {
            break;
        }

        for e in &graph.edges[node.id] {
            if visited[e.to] {
                continue;
            }

            if node.cost + e.cost < graph.nodes[e.to].cost {
                graph.nodes[e.to].cost = node.cost + e.cost;
                graph.nodes[e.to].prev = Some(node.id);
            }

            if let Some(prev_node_id) = graph.nodes[e.to].prev {
                if node.cost + e.cost == graph.nodes[e.to].cost && node.id < prev_node_id {
                    graph.nodes[e.to].prev = Some(node.id);
                }

                heap.push(Reverse(graph.nodes[e.to]));
            }
        }
    }
}

fn backtrace_path(graph: &Graph, to: usize) -> Vec<&Node> {
    let mut path = Vec::new();
    let mut node_id = to;

    loop {
        let node = &graph.nodes[node_id];
        path.push(node);

        if let Some(prev_node_id) = node.prev {
            node_id = prev_node_id;
        } else {
            break;
        }
    }

    path.reverse();

    path
}

fn main() {
    input! {
        n: usize,
        m: usize,
        s: usize,
        g: usize,
        edges: [(usize, usize, i32); m]
    }

    let mut graph = Graph::new(n);

    for (from, to, cost) in edges {
        graph.add_edge(from, to, cost);
    }

    dijkstra(&mut graph, s, g);
    let path = backtrace_path(&graph, g);

    let answer = path.iter().map(|p| p.id.to_string()).collect::<Vec<_>>().join(" ");

    println!("{}", answer);
}
0