結果
問題 | No.2855 Move on Grid |
ユーザー | 👑 KA37RI |
提出日時 | 2024-08-25 15:28:47 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,118 bytes |
コンパイル時間 | 11,899 ms |
コンパイル使用メモリ | 407,324 KB |
実行使用メモリ | 204,664 KB |
最終ジャッジ日時 | 2024-08-25 15:29:14 |
合計ジャッジ時間 | 23,425 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 450 ms
34,768 KB |
testcase_01 | AC | 253 ms
15,904 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 230 ms
14,964 KB |
testcase_04 | AC | 119 ms
9,432 KB |
testcase_05 | AC | 297 ms
20,352 KB |
testcase_06 | AC | 2,842 ms
204,664 KB |
testcase_07 | AC | 62 ms
8,400 KB |
testcase_08 | AC | 149 ms
9,996 KB |
testcase_09 | AC | 1,085 ms
121,012 KB |
testcase_10 | AC | 6 ms
6,944 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 6 ms
6,940 KB |
testcase_14 | AC | 6 ms
6,940 KB |
testcase_15 | AC | 6 ms
6,940 KB |
testcase_16 | AC | 6 ms
6,944 KB |
testcase_17 | AC | 6 ms
6,940 KB |
testcase_18 | AC | 6 ms
6,944 KB |
testcase_19 | AC | 6 ms
6,944 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
use std::collections::BinaryHeap; use proconio::input; fn main() { input! { n: usize, m: usize, k: usize, a: [[u64; m]; n], } let e9 = 10u64.pow(9); if k >= n + m - 1 { println!("{}", e9); return; } let mut visited = vec![vec![vec![false; k + 1]; m]; n]; let mut p_queue = BinaryHeap::new(); p_queue.push((a[0][0], 0, 0, 0)); if a[0][0] < e9 && k > 0 { p_queue.push((e9, 0, 0, 1)); } let mut ans = 0; while let Some((cs, ci, cj, ck)) = p_queue.pop() { if visited[ci][cj][ck] { continue; } else if (ci, cj) == (n - 1, m - 1) { ans = cs; break; } visited[ci][cj][ck] = true; for (di, dj) in [(-1, 0), (1, 0), (0, -1), (0, 1)] { let ni = ci as isize + di; let nj = cj as isize + dj; if ni < 0 || n <= ni as usize || nj < 0 || m <= nj as usize { continue; } let ni = ni as usize; let nj = nj as usize; if a[ni][nj] < e9 && k > ck { p_queue.push((cs, ni, nj, ck + 1)); } p_queue.push((cs.min(a[ni][nj]), ni, nj, ck)); } } println!("{}", ans); }