結果
問題 | No.2855 Move on Grid |
ユーザー | 👑 KA37RI |
提出日時 | 2024-08-25 16:06:41 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,093 bytes |
コンパイル時間 | 13,512 ms |
コンパイル使用メモリ | 400,156 KB |
実行使用メモリ | 205,232 KB |
最終ジャッジ日時 | 2024-08-25 16:07:07 |
合計ジャッジ時間 | 23,491 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 469 ms
34,104 KB |
testcase_01 | AC | 257 ms
16,236 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 204 ms
14,212 KB |
testcase_04 | AC | 126 ms
8,832 KB |
testcase_05 | AC | 350 ms
20,296 KB |
testcase_06 | AC | 2,739 ms
205,232 KB |
testcase_07 | AC | 61 ms
10,104 KB |
testcase_08 | AC | 142 ms
10,508 KB |
testcase_09 | AC | 1,064 ms
121,020 KB |
testcase_10 | AC | 6 ms
6,944 KB |
testcase_11 | AC | 5 ms
6,940 KB |
testcase_12 | AC | 5 ms
6,944 KB |
testcase_13 | AC | 6 ms
6,944 KB |
testcase_14 | AC | 6 ms
6,940 KB |
testcase_15 | AC | 5 ms
6,940 KB |
testcase_16 | AC | 6 ms
6,944 KB |
testcase_17 | AC | 5 ms
6,940 KB |
testcase_18 | AC | 7 ms
6,944 KB |
testcase_19 | AC | 6 ms
6,940 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 k > 0 && a[0][0] < e9 { p_queue.push((e9, 0, 0, 1)); } while let Some((cs, ci, cj, ck)) = p_queue.pop() { if visited[ci][cj][ck] { continue; } else if (n - ci) + (m - cj) - 2 <= k - ck { println!("{}", cs); return; } 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 k > ck && a[ni][nj] < e9 { p_queue.push((cs, ni, nj, ck + 1)); } p_queue.push((cs.min(a[ni][nj]), ni, nj, ck)); } } }