結果

問題 No.2328 Build Walls
ユーザー so-heyso-hey
提出日時 2023-06-10 00:20:52
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 906 bytes
コンパイル時間 14,080 ms
コンパイル使用メモリ 382,340 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-10 15:15:53
合計ジャッジ時間 17,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 RE -
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 1 ms
6,944 KB
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 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 35 ms
9,472 KB
testcase_34 WA -
testcase_35 AC 35 ms
9,216 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;
use std::cmp::min;

const INF: isize = 1000000000000000000;
fn main() {
    input!{
        h: usize,
        w: usize
    }
    let mut dp = vec![vec![INF; w]; h-2];
    for i in 0..h-2 {
        for j in 0..w {
            input!{
                a: isize
            }
            if a != -1 {
                dp[i][j] = a;
            }
        }
    }
    for j in 1..w {
        for i in 0..h-2 {
            if i == 0 {
                dp[i][j] += min(dp[i][j-1], dp[i+1][j-1]);
            } else if i == h-3 {
                dp[i][j] += min(dp[i-1][j-1], dp[i][j-1]);
            } else {
                dp[i][j] += min(dp[i][j-1], dp[i-1][j-1].min(dp[i+1][j-1]));
            }
        }
    }
    let mut ans = INF;
    for i in 0..h-2 {
        ans = ans.min(dp[i][w-1]);
    }
    if ans == INF {
        println!("-1");
    } else {
        println!("{}", ans);
    }
}
0