結果

問題 No.2095 High Rise
ユーザー minimumminimum
提出日時 2022-10-07 21:50:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 802 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 363,648 KB
最終ジャッジ日時 2024-06-12 07:03:00
合計ジャッジ時間 14,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,080 KB
testcase_01 AC 37 ms
53,408 KB
testcase_02 AC 36 ms
53,080 KB
testcase_03 AC 37 ms
53,016 KB
testcase_04 AC 41 ms
52,904 KB
testcase_05 AC 35 ms
52,208 KB
testcase_06 AC 37 ms
53,536 KB
testcase_07 AC 36 ms
52,680 KB
testcase_08 AC 36 ms
53,124 KB
testcase_09 AC 36 ms
54,004 KB
testcase_10 AC 37 ms
54,792 KB
testcase_11 AC 36 ms
52,852 KB
testcase_12 AC 82 ms
77,572 KB
testcase_13 AC 84 ms
77,268 KB
testcase_14 AC 90 ms
78,316 KB
testcase_15 AC 83 ms
77,512 KB
testcase_16 AC 81 ms
77,280 KB
testcase_17 AC 265 ms
108,728 KB
testcase_18 AC 205 ms
97,260 KB
testcase_19 AC 125 ms
81,944 KB
testcase_20 AC 283 ms
112,352 KB
testcase_21 AC 482 ms
145,624 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


INF = float('inf')
N, M = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]
edges = [[] for _ in range(2 * N * M)]
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] * (N * (M + 1))
dist[S] = 0
hq = [(0, S)]
done = [False] * (N * (M + 1))
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