結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,812 KB
testcase_01 AC 34 ms
51,808 KB
testcase_02 AC 34 ms
53,612 KB
testcase_03 AC 35 ms
53,232 KB
testcase_04 AC 36 ms
52,956 KB
testcase_05 AC 39 ms
53,700 KB
testcase_06 AC 40 ms
53,588 KB
testcase_07 AC 39 ms
52,568 KB
testcase_08 AC 33 ms
52,960 KB
testcase_09 AC 32 ms
52,692 KB
testcase_10 AC 35 ms
53,796 KB
testcase_11 AC 33 ms
52,204 KB
testcase_12 AC 33 ms
53,756 KB
testcase_13 AC 111 ms
79,128 KB
testcase_14 WA -
testcase_15 AC 113 ms
78,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 59 ms
73,728 KB
testcase_20 WA -
testcase_21 AC 82 ms
78,924 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 102 ms
81,680 KB
testcase_29 WA -
testcase_30 AC 147 ms
81,960 KB
testcase_31 AC 134 ms
81,804 KB
testcase_32 WA -
testcase_33 AC 122 ms
82,028 KB
testcase_34 AC 145 ms
82,068 KB
testcase_35 AC 162 ms
82,276 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