結果

問題 No.2095 High Rise
ユーザー minimumminimum
提出日時 2022-10-07 21:47:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 506,280 KB
最終ジャッジ日時 2024-06-12 06:54:28
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,168 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 41 ms
53,248 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 AC 42 ms
52,608 KB
testcase_12 AC 109 ms
77,636 KB
testcase_13 AC 105 ms
77,540 KB
testcase_14 AC 114 ms
78,996 KB
testcase_15 AC 108 ms
78,056 KB
testcase_16 AC 102 ms
77,184 KB
testcase_17 AC 412 ms
125,988 KB
testcase_18 AC 300 ms
108,580 KB
testcase_19 AC 157 ms
83,980 KB
testcase_20 AC 480 ms
130,736 KB
testcase_21 AC 876 ms
181,920 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

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 - 1):
        edges[i * M + j].append((i * M + j + 1, 0))
        edges[i * M + j + 1].append((i * M + j, 0))
for i in range(N):
    for j in range(M):
        edges[i * M + j].append((N * M + i * M + j, A[i][j]))
        edges[N * M + i * M + j].append((i * M + j, 0))
for i in range(N - 1):
    for j in range(M):
        edges[N * M + i * M + j].append((N * M + (i + 1) * M + j, A[i + 1][j]))


dist = [INF] * (2 * N * M)
dist[0] = 0
hq = [(0, 0)]
done = [False] * (2 * N * M)
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[N * M - 1])
0