結果
問題 | No.2565 はじめてのおつかい |
ユーザー | Rusty |
提出日時 | 2023-12-02 16:36:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 5,582 bytes |
コンパイル時間 | 14,922 ms |
コンパイル使用メモリ | 381,780 KB |
実行使用メモリ | 24,440 KB |
最終ジャッジ日時 | 2024-09-26 20:30:31 |
合計ジャッジ時間 | 16,486 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 113 ms
24,432 KB |
testcase_04 | AC | 70 ms
24,440 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 39 ms
10,020 KB |
testcase_07 | AC | 19 ms
6,336 KB |
testcase_08 | AC | 23 ms
6,780 KB |
testcase_09 | AC | 35 ms
9,620 KB |
testcase_10 | AC | 27 ms
7,404 KB |
testcase_11 | AC | 65 ms
15,228 KB |
testcase_12 | AC | 11 ms
5,376 KB |
testcase_13 | AC | 25 ms
7,288 KB |
testcase_14 | AC | 47 ms
10,892 KB |
testcase_15 | AC | 47 ms
10,720 KB |
testcase_16 | AC | 44 ms
15,104 KB |
testcase_17 | AC | 8 ms
5,376 KB |
testcase_18 | AC | 12 ms
6,560 KB |
testcase_19 | AC | 56 ms
13,332 KB |
testcase_20 | AC | 48 ms
12,668 KB |
testcase_21 | AC | 41 ms
12,056 KB |
testcase_22 | AC | 23 ms
8,448 KB |
testcase_23 | AC | 30 ms
8,684 KB |
testcase_24 | AC | 5 ms
5,376 KB |
testcase_25 | AC | 57 ms
13,064 KB |
testcase_26 | AC | 29 ms
8,280 KB |
testcase_27 | AC | 43 ms
12,608 KB |
testcase_28 | AC | 55 ms
13,168 KB |
testcase_29 | AC | 65 ms
15,888 KB |
testcase_30 | AC | 49 ms
14,076 KB |
testcase_31 | AC | 52 ms
13,008 KB |
testcase_32 | AC | 28 ms
8,376 KB |
testcase_33 | AC | 51 ms
13,764 KB |
testcase_34 | AC | 55 ms
12,744 KB |
testcase_35 | AC | 46 ms
14,828 KB |
testcase_36 | AC | 59 ms
13,932 KB |
testcase_37 | AC | 29 ms
8,612 KB |
testcase_38 | AC | 50 ms
12,416 KB |
testcase_39 | AC | 45 ms
10,304 KB |
testcase_40 | AC | 56 ms
15,452 KB |
testcase_41 | AC | 64 ms
16,536 KB |
testcase_42 | AC | 30 ms
8,340 KB |
testcase_43 | AC | 43 ms
11,568 KB |
testcase_44 | AC | 23 ms
6,944 KB |
testcase_45 | AC | 11 ms
5,376 KB |
testcase_46 | AC | 54 ms
11,928 KB |
testcase_47 | AC | 29 ms
8,796 KB |
testcase_48 | AC | 27 ms
7,376 KB |
testcase_49 | AC | 11 ms
5,376 KB |
testcase_50 | AC | 31 ms
9,464 KB |
testcase_51 | AC | 1 ms
5,376 KB |
testcase_52 | AC | 19 ms
9,600 KB |
コンパイルメッセージ
warning: function `Dijkstra` should have a snake case name --> src/main.rs:102:8 | 102 | pub fn Dijkstra( | ^^^^^^^^ help: convert the identifier to snake case: `dijkstra` | note: the lint level is defined here --> src/main.rs:4:9 | 4 | #![warn(non_snake_case)] | ^^^^^^^^^^^^^^
ソースコード
#![allow(unused_imports)] #![allow(dead_code)] #![allow(unused_variables)] #![warn(non_snake_case)] //use itertools::Itertools; use std::cmp::{max, min, Reverse}; use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque}; use std::f64::consts::PI; use std::io::prelude::*; use std::io::{stdin, stdout, BufWriter, Write}; use std::time::Instant; /* use rand::distributions::{Distribution, Uniform}; use rand_chacha::{rand_core::SeedableRng, ChaCha8Rng}; use core::ops::{Add,Sub,Mul,Div}; use itertools::Itertools; */ const M1: i64 = 1000_000_007; const M2: i64 = 998244353; fn main() { //let mut out: BufWriter<std::io::StdoutLock<'_>> = BufWriter::new(stdout().lock()); input! { n: usize, m: usize, uv: [(usize,usize);m] } let mut edge = vec![]; for i in 0..m { edge.push((uv[i].0, uv[i].1, 1)); } let mut ans1: i64 = 0; let mut ans2: i64 = 0; let (dist1, set) = Dijkstra(1, n, m, &edge); let (distn1, set) = Dijkstra(n - 1, n, m, &edge); let (distn, set) = Dijkstra(n, n, m, &edge); if dist1[n - 1] == usize::MAX { ans1 += 1000_000_000_000; } else { ans1 += dist1[n - 1] as i64; } if distn1[n] == usize::MAX { ans1 += 1000_000_000_000; } else { ans1 += distn1[n] as i64; } if distn[1] == usize::MAX { ans1 += 1000_000_000_000; } else { ans1 += distn[1] as i64; } if dist1[n] == usize::MAX { ans2 += 1000_000_000_000; } else { ans2 += dist1[n] as i64; } if distn[n - 1] == usize::MAX { ans2 += 1000_000_000_000; } else { ans2 += distn[n - 1] as i64; } if distn1[1] == usize::MAX { ans2 += 1000_000_000_000; } else { ans2 += distn1[1] as i64; } if ans1 > 1000_000_000_000 && ans2 > 1000_000_000_000 { println!("{}", -1); } else { println!("{}", min(ans1, ans2)); } //write!(out,"{}\n",ans).unwrap(); } // Dijkstra法 // 指定した頂点からその他全ての頂点間の最小コストを求めるアルゴリズム // ただし辺のコストは必ず正 // xから1からnまでの頂点への最小コストを持つVectorを返す // x: 出発点 // n: 頂点数 // m: 辺の数 // edge: Vec<(頂点a、頂点b、コスト)> // distとset(最短経路とスパニングツリーの辺)を返す // 計算量O(NlogN) pub fn Dijkstra( x: usize, n: usize, m: usize, edge: &Vec<(usize, usize, usize)>, ) -> (Vec<usize>, HashSet<i32>) { let mut g = vec![vec![]; n + 1]; for i in 0..m { g[edge[i].0].push((edge[i].1, edge[i].2, i as i32 + 1)); } let mut set = HashSet::new(); // dist[i]: xからiまでの最小コスト let mut dist = vec![usize::MAX; n + 1]; // confirm[i]: iが巡回済みであるがどうか let mut confirm = vec![false; n + 1]; dist[x] = 0; // 最短経路の候補 let mut heap = BinaryHeap::new(); heap.push((Reverse(0), x, -1)); while !heap.is_empty() { // 頂点vのコストは_dで確定の可能性 let (Reverse(_d), v, edge_i) = heap.pop().unwrap(); // すでに頂点vのコストが確定している場合は飛ばす if confirm[v] { continue; } //vのコストが確定 confirm[v] = true; if edge_i != -1 { set.insert(edge_i); } //vの隣接ノードに関して最短距離確定の候補をpush for &(i, cost, edge_i) in &g[v] { if dist[i] > dist[v] + cost { dist[i] = dist[v] + cost; heap.push((Reverse(dist[i]), i, edge_i)); } } } return (dist, set); } pub mod my_proconio { #[macro_export] 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_export] 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)*} }; ($next:expr, mut $var:ident : $t:tt $($r:tt)*) => { let mut $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } #[macro_export] 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") }; } }