結果

問題 No.2328 Build Walls
ユーザー ntudantuda
提出日時 2023-06-10 10:43:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 3,000 ms
コード長 770 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,260 KB
最終ジャッジ日時 2024-06-10 19:53:50
合計ジャッジ時間 10,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 35 ms
52,864 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 40 ms
52,864 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 137 ms
82,304 KB
testcase_14 AC 275 ms
80,296 KB
testcase_15 AC 230 ms
79,916 KB
testcase_16 AC 128 ms
77,696 KB
testcase_17 AC 217 ms
80,464 KB
testcase_18 AC 98 ms
76,800 KB
testcase_19 AC 51 ms
66,688 KB
testcase_20 AC 113 ms
76,832 KB
testcase_21 AC 87 ms
76,800 KB
testcase_22 AC 386 ms
82,616 KB
testcase_23 AC 554 ms
89,260 KB
testcase_24 AC 527 ms
89,068 KB
testcase_25 AC 615 ms
88,848 KB
testcase_26 AC 423 ms
88,504 KB
testcase_27 AC 474 ms
88,528 KB
testcase_28 AC 100 ms
80,384 KB
testcase_29 AC 538 ms
89,224 KB
testcase_30 AC 158 ms
87,936 KB
testcase_31 AC 139 ms
87,552 KB
testcase_32 AC 477 ms
88,524 KB
testcase_33 AC 615 ms
89,200 KB
testcase_34 AC 185 ms
88,320 KB
testcase_35 AC 595 ms
89,260 KB
testcase_36 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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

D = [[INF] * (H - 2) for _ in range(W)]
q = []
dir = [[0, 1], [1, 1], [1, 0], [1, -1], [0, -1], [-1, -1], [-1, 0], [-1, 1]]

for i in range(H - 2):
    a = A[i][0]
    if a != -1:
        heappush(q, (a, (0, i)))
        D[0][i] = a

while q:
    d, (x, y) = heappop(q)
    if d > D[x][y]:
        continue
    for xd, yd in dir:
        xd += x
        yd += y
        if 0 <= xd < W and 0 <= yd < H - 2 and A[yd][xd] != -1:
            if D[xd][yd] > D[x][y] + A[yd][xd]:
                D[xd][yd] = D[x][y] + A[yd][xd]
                heappush(q, (D[xd][yd], (xd, yd)))

ans = min(D[-1])
if ans == INF:
    print(-1)
else:
    print(ans)
0