結果

問題 No.2328 Build Walls
ユーザー yu7400kiyu7400ki
提出日時 2023-05-28 15:44:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-06-08 08:23:54
合計ジャッジ時間 19,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 235 ms
19,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
11,776 KB
testcase_20 WA -
testcase_21 AC 209 ms
16,768 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 405 ms
22,144 KB
testcase_29 WA -
testcase_30 AC 407 ms
26,496 KB
testcase_31 AC 406 ms
25,728 KB
testcase_32 WA -
testcase_33 AC 2,828 ms
61,312 KB
testcase_34 AC 424 ms
29,440 KB
testcase_35 AC 2,092 ms
52,096 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d = [[float('inf')] * W for _ in range(H - 2)]
for h in range(H - 2):
    if A[h][0] == -1:
        continue
    d[h][0] = A[h][0]

for w in range(W - 1):
    for h in range(H - 2):
        if d[h][w] == float('inf'):
            continue
        for d_h in (-1, 0, 1):
            if h + d_h < 0 or h + d_h >= H - 2:
                continue
            if A[h + d_h][w + 1] == -1:
                continue
            d[h + d_h][w + 1] = min(d[h + d_h][w + 1], d[h][w] + A[h + d_h][w + 1])

ans = float('inf')
for h in range(H - 2):
    ans = min(ans, d[h][W - 1])

if ans == float('inf'):
    print(-1)
else:
    print(ans)
0