結果

問題 No.2095 High Rise
ユーザー minimumminimum
提出日時 2022-10-07 21:59:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,709 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 309,880 KB
最終ジャッジ日時 2024-06-12 07:18:17
合計ジャッジ時間 11,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,192 KB
testcase_01 AC 35 ms
53,024 KB
testcase_02 AC 35 ms
53,084 KB
testcase_03 AC 35 ms
53,156 KB
testcase_04 AC 38 ms
53,808 KB
testcase_05 AC 38 ms
53,892 KB
testcase_06 AC 37 ms
52,960 KB
testcase_07 AC 39 ms
53,940 KB
testcase_08 AC 35 ms
52,824 KB
testcase_09 AC 34 ms
53,200 KB
testcase_10 AC 39 ms
54,144 KB
testcase_11 AC 35 ms
53,312 KB
testcase_12 AC 85 ms
76,792 KB
testcase_13 AC 79 ms
76,988 KB
testcase_14 AC 86 ms
77,816 KB
testcase_15 AC 82 ms
77,308 KB
testcase_16 AC 78 ms
77,244 KB
testcase_17 AC 229 ms
101,340 KB
testcase_18 AC 173 ms
92,940 KB
testcase_19 AC 102 ms
80,632 KB
testcase_20 AC 238 ms
103,952 KB
testcase_21 AC 425 ms
131,112 KB
testcase_22 AC 1,709 ms
309,688 KB
testcase_23 AC 1,702 ms
309,212 KB
testcase_24 AC 1,645 ms
309,684 KB
testcase_25 AC 1,687 ms
308,676 KB
testcase_26 AC 1,659 ms
309,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
import sys
input = sys.stdin.readline


INF = 10 ** 18 + 1
N, M = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]
V = N * (M + 1)
edges = [[] for _ in range(V)]
for i in range(N):
    for j in range(M):
        edges[N * M + i].append((i * M + j, A[i][j]))
        edges[i * M + j].append((N * M + i, 0))
for i in range(N - 1):
    for j in range(M):
        edges[i * M + j].append(((i + 1) * M + j, A[i + 1][j]))


S = N * M
dist = [INF] * V
dist[S] = 0
hq = [(0, S)]
done = [False] * V
while hq:
    _, now = heappop(hq)
    if done[now]:
        continue
    done[now] = True
    for nxt, cost in edges[now]:
        if dist[nxt] > dist[now] + cost:
            dist[nxt] = dist[now] + cost
            heappush(hq, (dist[nxt], nxt))

print(dist[-1])
0