結果

問題 No.2095 High Rise
ユーザー flygonflygon
提出日時 2022-10-07 21:55:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 97,484 KB
最終ジャッジ日時 2024-06-12 07:10:28
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 42 ms
52,736 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 45 ms
52,864 KB
testcase_11 AC 41 ms
52,608 KB
testcase_12 AC 102 ms
76,420 KB
testcase_13 AC 92 ms
76,928 KB
testcase_14 AC 114 ms
76,544 KB
testcase_15 AC 104 ms
76,840 KB
testcase_16 AC 83 ms
74,536 KB
testcase_17 AC 665 ms
82,468 KB
testcase_18 AC 360 ms
80,244 KB
testcase_19 AC 150 ms
77,164 KB
testcase_20 AC 1,127 ms
85,632 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [list(map(int,input().split())) for i in range(n)]
if n == 1: print(0); exit()
from heapq import heappop, heappush
INF = 10**15
dist = [[INF]*(m) for i in range(n)]*(n+1)
que = []
for i in range(m):
  heappush(que, (a[n-1][i],n-1, i))
  dist[n-1][i] = a[n-1][i]
while que:
  c, x,y = heappop(que)
  if c > dist[x][y]: continue
  for nxt in range(m):
    anxt = a[x][nxt]
    if dist[x][y] + anxt < dist[x][nxt]:
      dist[x][nxt] = dist[x][y] + anxt
      heappush(que,(dist[x][nxt],x,nxt))
  if x != 0:
    if dist[x][y] + a[x-1][y] < dist[x-1][y]:
      dist[x-1][y] = dist[x][y] + a[x-1][y]
      heappush(que, (dist[x-1][y], x-1, y))

print(min(dist[0]))
0