結果
問題 | No.340 雪の足跡 |
ユーザー | koba-e964 |
提出日時 | 2021-11-17 23:51:53 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,392 bytes |
コンパイル時間 | 15,721 ms |
コンパイル使用メモリ | 378,440 KB |
実行使用メモリ | 29,184 KB |
最終ジャッジ日時 | 2024-06-06 15:03:33 |
合計ジャッジ時間 | 20,092 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 28 ms
29,184 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
ソースコード
use std::collections::*; // 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 ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, [ $t:tt ]) => {{ let len = read_value!($next, usize); read_value!($next, [$t; len]) }}; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } fn main() { input! { w: usize, h: usize, n: usize, b: [[usize]; n], } let mut g = vec![vec![]; h * w]; for b in b { let m = b.len(); for i in 0..m - 1 { let (x, y) = if b[i] < b[i + 1] { (b[i], b[i + 1]) } else { (b[i + 1], b[i]) }; if x % w == y % w { for i in 0..y / w - x / w { g[x + i * w].push(x + i * w + w); g[x + i * w + w].push(x + i * w); } } else { for i in x..y { g[i].push(i + 1); g[i + 1].push(i); } } } } for i in 0..h * w { g[i].sort_unstable(); g[i].dedup(); } let mut que = VecDeque::new(); const INF: i32 = 1 << 28; let mut dist = vec![INF; h * w]; que.push_back((0, 0)); while let Some((d, v)) = que.pop_front() { if dist[v] <= d { continue; } dist[v] = d; for &w in &g[v] { if dist[w] > d + 1 { que.push_back((d + 1, w)); } } } if dist[h * w - 1] >= INF { println!("Odekakedekinai.."); } else { println!("{}", dist[h * w - 1]); } }