結果
問題 | No.340 雪の足跡 |
ユーザー | koba-e964 |
提出日時 | 2021-11-18 00:06:43 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,874 bytes |
コンパイル時間 | 23,692 ms |
コンパイル使用メモリ | 377,716 KB |
実行使用メモリ | 84,096 KB |
最終ジャッジ日時 | 2024-06-06 15:29:48 |
合計ジャッジ時間 | 18,506 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | AC | 1 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 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 69 ms
9,856 KB |
testcase_22 | AC | 24 ms
37,120 KB |
testcase_23 | AC | 188 ms
83,980 KB |
testcase_24 | WA | - |
testcase_25 | AC | 186 ms
66,304 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
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")); } 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 + 1].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]); } }