結果

問題 No.2328 Build Walls
ユーザー ntudantuda
提出日時 2023-06-08 22:44:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 787 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 82,712 KB
最終ジャッジ日時 2024-12-31 07:03:45
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,192 KB
testcase_01 AC 40 ms
53,012 KB
testcase_02 AC 41 ms
53,476 KB
testcase_03 AC 39 ms
53,348 KB
testcase_04 AC 39 ms
53,216 KB
testcase_05 AC 37 ms
52,208 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 38 ms
52,464 KB
testcase_08 AC 38 ms
53,872 KB
testcase_09 AC 37 ms
52,632 KB
testcase_10 AC 37 ms
53,160 KB
testcase_11 AC 37 ms
52,616 KB
testcase_12 AC 38 ms
52,660 KB
testcase_13 AC 126 ms
79,380 KB
testcase_14 WA -
testcase_15 AC 122 ms
77,996 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 60 ms
72,520 KB
testcase_20 WA -
testcase_21 AC 95 ms
78,932 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 125 ms
81,768 KB
testcase_29 WA -
testcase_30 AC 168 ms
82,312 KB
testcase_31 AC 151 ms
82,128 KB
testcase_32 WA -
testcase_33 AC 146 ms
81,972 KB
testcase_34 AC 166 ms
81,872 KB
testcase_35 AC 182 ms
82,440 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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
    # print(dp)

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