結果

問題 No.2328 Build Walls
ユーザー lloyzlloyz
提出日時 2024-01-19 09:06:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,163 ms / 3,000 ms
コード長 965 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 89,700 KB
最終ジャッジ日時 2024-09-28 03:20:34
合計ジャッジ時間 12,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 38 ms
52,992 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 38 ms
52,864 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 138 ms
82,048 KB
testcase_14 AC 362 ms
80,384 KB
testcase_15 AC 281 ms
80,128 KB
testcase_16 AC 114 ms
77,560 KB
testcase_17 AC 258 ms
80,000 KB
testcase_18 AC 86 ms
76,636 KB
testcase_19 AC 49 ms
67,584 KB
testcase_20 AC 103 ms
76,832 KB
testcase_21 AC 80 ms
77,320 KB
testcase_22 AC 547 ms
83,260 KB
testcase_23 AC 865 ms
89,700 KB
testcase_24 AC 796 ms
89,280 KB
testcase_25 AC 851 ms
89,688 KB
testcase_26 AC 599 ms
88,576 KB
testcase_27 AC 739 ms
88,976 KB
testcase_28 AC 100 ms
80,816 KB
testcase_29 AC 844 ms
89,428 KB
testcase_30 AC 159 ms
87,424 KB
testcase_31 AC 142 ms
87,040 KB
testcase_32 AC 742 ms
89,176 KB
testcase_33 AC 1,163 ms
89,588 KB
testcase_34 AC 171 ms
88,140 KB
testcase_35 AC 967 ms
88,640 KB
testcase_36 AC 39 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

h, w = map(int, input().split())
A = []
A.append([-1 for _ in range(w)])
for _ in range(h - 2):
    A.append(list(map(int, input().split())))
A.append([-1 for _ in range(w)])

H = []
INF = 10**18
DP = [[INF for _ in range(w)] for _ in range(h)]
for i in range(h):
    if A[i][0] != -1:
        DP[i][0] = A[i][0]
        heappush(H, (DP[i][0], i, 0))
Directions = [(1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1), (0, -1), (1, -1)]
while H:
    cc, ci, cj = heappop(H)
    if cc > DP[ci][cj]:
        continue
    for di, dj in Directions:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if A[ni][nj] == -1:
                continue
            nc = cc + A[ni][nj]
            if nc >= DP[ni][nj]:
                continue
            DP[ni][nj] = nc
            heappush(H, (nc, ni, nj))
ans = INF
for i in range(h):
    ans = min(ans, DP[i][-1])
if ans == INF:
    ans = -1
print(ans)
0