結果
問題 | No.340 雪の足跡 |
ユーザー | koba-e964 |
提出日時 | 2021-11-18 00:08:39 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 411 ms / 1,000 ms |
コード長 | 2,997 bytes |
コンパイル時間 | 18,702 ms |
コンパイル使用メモリ | 389,736 KB |
実行使用メモリ | 84,132 KB |
最終ジャッジ日時 | 2024-12-24 07:37:20 |
合計ジャッジ時間 | 20,217 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 20 ms
7,936 KB |
testcase_15 | AC | 22 ms
8,320 KB |
testcase_16 | AC | 12 ms
6,820 KB |
testcase_17 | AC | 27 ms
9,344 KB |
testcase_18 | AC | 26 ms
9,344 KB |
testcase_19 | AC | 27 ms
9,344 KB |
testcase_20 | AC | 159 ms
46,212 KB |
testcase_21 | AC | 73 ms
9,984 KB |
testcase_22 | AC | 28 ms
37,080 KB |
testcase_23 | AC | 205 ms
83,984 KB |
testcase_24 | AC | 112 ms
41,108 KB |
testcase_25 | AC | 177 ms
57,632 KB |
testcase_26 | AC | 18 ms
6,820 KB |
testcase_27 | AC | 5 ms
6,820 KB |
testcase_28 | AC | 23 ms
6,820 KB |
testcase_29 | AC | 253 ms
49,608 KB |
testcase_30 | AC | 150 ms
38,240 KB |
testcase_31 | AC | 369 ms
77,024 KB |
testcase_32 | AC | 400 ms
83,988 KB |
testcase_33 | AC | 357 ms
84,056 KB |
testcase_34 | AC | 411 ms
83,948 KB |
testcase_35 | AC | 371 ms
83,972 KB |
testcase_36 | AC | 353 ms
84,132 KB |
ソースコード
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),* )) => { ($(read_value!($next, $t)),*) }; ($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")); } // https://yukicoder.me/problems/no/340 (3) // BFS で最短路。ただし辺を愚直に張ると TLE なので注意。 fn main() { input! { w: usize, h: usize, n: usize, b: [([usize], usize); n], } let mut g = vec![vec![]; h * w]; let mut row = vec![vec![0; w]; h]; let mut col = vec![vec![0; h]; w]; for (mut b, blast) in b { b.push(blast); 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 { col[x % w][x / w] += 1; col[x % w][y / w] -= 1; } else { row[x / w][x % w] += 1; row[x / w][y % w] -= 1; } } } for i in 0..h { for j in 0..w - 1 { row[i][j + 1] += row[i][j]; if row[i][j] > 0 { g[i * w + j].push(i * w + j + 1); g[i * w + j + 1].push(i * w + j); } } } for i in 0..w { for j in 0..h - 1 { col[i][j + 1] += col[i][j]; if col[i][j] > 0 { g[j * w + i].push(j * w + i + w); g[j * w + i + w].push(j * w + i); } } } 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]); } }