結果

問題 No.2328 Build Walls
ユーザー rlangevinrlangevin
提出日時 2023-05-30 12:22:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,363 ms / 3,000 ms
コード長 1,634 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 316,800 KB
最終ジャッジ日時 2024-06-08 20:04:51
合計ジャッジ時間 14,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 41 ms
52,864 KB
testcase_08 AC 41 ms
52,992 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 38 ms
52,992 KB
testcase_11 AC 37 ms
52,736 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 254 ms
125,312 KB
testcase_14 AC 405 ms
131,328 KB
testcase_15 AC 306 ms
112,256 KB
testcase_16 AC 142 ms
84,096 KB
testcase_17 AC 298 ms
111,872 KB
testcase_18 AC 113 ms
77,568 KB
testcase_19 AC 85 ms
80,384 KB
testcase_20 AC 133 ms
80,512 KB
testcase_21 AC 121 ms
93,184 KB
testcase_22 AC 573 ms
162,560 KB
testcase_23 AC 868 ms
213,760 KB
testcase_24 AC 825 ms
203,264 KB
testcase_25 AC 859 ms
211,840 KB
testcase_26 AC 662 ms
180,992 KB
testcase_27 AC 836 ms
195,968 KB
testcase_28 AC 159 ms
112,512 KB
testcase_29 AC 883 ms
213,888 KB
testcase_30 AC 332 ms
166,912 KB
testcase_31 AC 321 ms
157,568 KB
testcase_32 AC 783 ms
194,560 KB
testcase_33 AC 1,363 ms
316,800 KB
testcase_34 AC 377 ms
169,856 KB
testcase_35 AC 1,057 ms
254,592 KB
testcase_36 AC 41 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
inf = float('inf')


def dijkstra(s, g, N):
    # ゴールがない場合はg=-1とする。

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [cost(0, s)]
    while Q:
        c, m = divmod(heappop(Q), N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, cost(newdist, u))
    return dist

H, W = map(int, input().split())
A = [[-1] * (W + 1)]
for i in range(H - 2):
    A.append(list(map(int, input().split())) + [-1])
A.append([-1] * (W + 1))

N = (H + 1) * (W + 1)
def f(h, w):
    return h * (W + 1) + w
    
G = [[] for i in range(N)]
for i in range(H):
    if A[i][0] == -1:
        continue
    G[0].append((f(i, 0), A[i][0]))

dx = [1, 1, 1, 0, 0, -1, -1, -1]
dy = [1, 0, -1, 1, -1, 1, 0, -1]
for h in range(H):
    for w in range(W + 1):
        if A[h][w] == -1:
            continue
        for k in range(8):
            x = h + dx[k]
            y = w + dy[k]
            if A[x][y] == -1:
                continue
            G[f(h, w)].append((f(x, y), A[x][y]))

D = dijkstra(0, -1, N)
ans = inf
for i in range(H):
    ans = min(ans, D[f(i, W - 1)])

print(ans) if ans != inf else print(-1)
0