結果
問題 | No.807 umg tours |
ユーザー | koba-e964 |
提出日時 | 2019-03-23 00:23:20 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 559 ms / 4,000 ms |
コード長 | 4,370 bytes |
コンパイル時間 | 14,952 ms |
コンパイル使用メモリ | 382,928 KB |
実行使用メモリ | 52,672 KB |
最終ジャッジ日時 | 2024-05-02 23:37:46 |
合計ジャッジ時間 | 21,622 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 355 ms
39,068 KB |
testcase_12 | AC | 263 ms
31,636 KB |
testcase_13 | AC | 404 ms
41,540 KB |
testcase_14 | AC | 149 ms
19,668 KB |
testcase_15 | AC | 115 ms
16,188 KB |
testcase_16 | AC | 417 ms
40,912 KB |
testcase_17 | AC | 520 ms
52,376 KB |
testcase_18 | AC | 508 ms
52,144 KB |
testcase_19 | AC | 522 ms
51,344 KB |
testcase_20 | AC | 277 ms
29,464 KB |
testcase_21 | AC | 289 ms
30,580 KB |
testcase_22 | AC | 106 ms
14,300 KB |
testcase_23 | AC | 78 ms
11,728 KB |
testcase_24 | AC | 238 ms
44,540 KB |
testcase_25 | AC | 559 ms
52,672 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::*; #[allow(unused_imports)] use std::collections::*; use std::io::{Write, BufWriter}; // https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { ($($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:tt ]) => {{ let len = read_value!($next, usize); (0..len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }}; ($next:expr, $t:ty) => { $next().parse::<$t>().expect("Parse error") }; } /* * Dijkstra's algorithm. * Verified by: AtCoder ABC035 (http://abc035.contest.atcoder.jp/submissions/676539) */ struct Dijkstra { edges: Vec<Vec<(usize, i64)>>, // adjacent list representation } /* * Code from https://doc.rust-lang.org/std/collections/binary_heap/ */ #[derive(Copy, Clone, Eq, PartialEq)] struct State { cost: i64, position: usize, } // The priority queue depends on `Ord`. // Explicitly implement the trait so the queue becomes a min-heap // instead of a max-heap. impl Ord for State { fn cmp(&self, other: &State) -> Ordering { // Notice that the we flip the ordering here match other.cost.cmp(&self.cost) { std::cmp::Ordering::Equal => other.position.cmp(&self.position), x => x, } } } // `PartialOrd` needs to be implemented as well. impl PartialOrd for State { fn partial_cmp(&self, other: &State) -> Option<Ordering> { Some(self.cmp(other)) } } impl Dijkstra { fn new(n: usize) -> Self { Dijkstra { edges: vec![Vec::new(); n] } } fn add_edge(&mut self, from: usize, to: usize, cost: i64) { self.edges[from].push((to, cost)); } /* * This function returns a Vec consisting of the distances from vertex source. */ fn solve(&self, source: usize, inf: i64) -> Vec<i64> { let n = self.edges.len(); let mut d = vec![inf; n]; let mut que = std::collections::BinaryHeap::new(); que.push(State {cost: 0, position: source}); while let Some(State {cost, position: pos}) = que.pop() { if d[pos] <= cost { continue; } d[pos] = cost; for adj in &self.edges[pos] { que.push(State {cost: cost + adj.1, position: adj.0}); } } return d; } } fn solve() { let out = std::io::stdout(); let mut out = BufWriter::new(out.lock()); macro_rules! puts { ($($format:tt)*) => (write!(out,$($format)*).unwrap()); } input! { n: usize, m: usize, abc: [(usize1, usize1, i64); m], } let mut dijk = Dijkstra::new(2 * n); for (a, b, c) in abc { dijk.add_edge(a, b, c); dijk.add_edge(b, a, c); dijk.add_edge(a, n + b, 0); dijk.add_edge(b, n + a, 0); dijk.add_edge(n + a, n + b, c); dijk.add_edge(n + b, n + a, c); } for i in 0..n { dijk.add_edge(i, i + n, 0); } let d = dijk.solve(0, 1 << 60); for i in 0..n { puts!("{}\n", d[i] + d[n + i]); } } fn main() { // In order to avoid potential stack overflow, spawn a new thread. let stack_size = 104_857_600; // 100 MB let thd = std::thread::Builder::new().stack_size(stack_size); thd.spawn(|| solve()).unwrap().join().unwrap(); }