結果

問題 No.2328 Build Walls
ユーザー ntudantuda
提出日時 2023-06-08 22:29:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 82,736 KB
最終ジャッジ日時 2024-06-10 01:01:42
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 35 ms
52,564 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
52,604 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 119 ms
79,172 KB
testcase_14 WA -
testcase_15 AC 118 ms
77,824 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 63 ms
71,752 KB
testcase_20 WA -
testcase_21 AC 101 ms
78,872 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 117 ms
81,984 KB
testcase_29 WA -
testcase_30 AC 156 ms
81,944 KB
testcase_31 AC 141 ms
81,696 KB
testcase_32 WA -
testcase_33 AC 138 ms
82,004 KB
testcase_34 AC 154 ms
81,908 KB
testcase_35 AC 166 ms
82,176 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H - 2)]
INF = 10 ** 6

dp = [INF] * (H - 2)
for i in range(H - 2):
    if A[i][0] != -1:
        dp[i] = A[i][0]

for i in range(1, W):
    dp2 = [INF] * (H - 2)
    for j in range(H - 2):
        a = A[j][i]
        if a != -1:
            dp2[j] = min(dp2[j], dp[j] + a)
            if 0 < j:
                dp2[j] = min(dp2[j], dp[j - 1] + a)
                dp2[j] = min(dp2[j], dp2[j - 1] + a)
            if j < H - 3:
                dp2[j] = min(dp2[j], dp[j + 1] + a)
    for j in reversed(range(H - 3)):
        a = A[j][i]
        if a != -1:
            dp2[j] = min(dp2[j], dp2[j + 1] + a)
    dp = dp2

if min(dp) < INF:
    print(min(dp))
else:
    print(-1)
0