結果

問題 No.2328 Build Walls
ユーザー masa_aamasa_aa
提出日時 2023-05-28 14:51:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,424 KB
最終ジャッジ日時 2024-06-08 06:19:31
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 35 ms
51,456 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 106 ms
80,128 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 61 ms
71,552 KB
testcase_20 WA -
testcase_21 AC 98 ms
81,152 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 115 ms
80,896 KB
testcase_29 WA -
testcase_30 AC 159 ms
86,656 KB
testcase_31 AC 153 ms
81,664 KB
testcase_32 WA -
testcase_33 AC 148 ms
86,784 KB
testcase_34 AC 153 ms
86,792 KB
testcase_35 AC 145 ms
87,040 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
h -= 2
a = [list(map(int, input().split())) for _ in range(h)]
INF = 10**18
dp = [[INF] * w for _ in range(h)] + [[INF] * w]

for i in range(h):
    if a[i][0] == -1:
        continue
    dp[i][0] = a[i][0]

for j in range(w - 1):
    for i in range(h):
        if a[i][j + 1] == -1:
            continue
        dp[i][j + 1] = min(dp[i - 1][j], dp[i][j], dp[i + 1][j]) + a[i][j + 1]
ans = min(v[-1] for v in dp)
print(ans if ans < INF else -1)
# print(*dp, sep="\n")
0