結果

問題 No.2095 High Rise
ユーザー flygonflygon
提出日時 2022-10-07 21:56:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 712 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 127,716 KB
最終ジャッジ日時 2024-06-12 07:12:07
合計ジャッジ時間 10,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,236 KB
testcase_01 AC 43 ms
53,124 KB
testcase_02 AC 39 ms
52,760 KB
testcase_03 AC 41 ms
53,244 KB
testcase_04 AC 40 ms
54,340 KB
testcase_05 AC 40 ms
53,028 KB
testcase_06 AC 43 ms
53,976 KB
testcase_07 AC 39 ms
52,680 KB
testcase_08 AC 40 ms
52,080 KB
testcase_09 AC 39 ms
52,140 KB
testcase_10 AC 41 ms
52,884 KB
testcase_11 AC 40 ms
53,564 KB
testcase_12 AC 95 ms
77,300 KB
testcase_13 AC 96 ms
76,808 KB
testcase_14 AC 109 ms
76,636 KB
testcase_15 AC 104 ms
76,940 KB
testcase_16 AC 78 ms
73,664 KB
testcase_17 AC 640 ms
82,932 KB
testcase_18 AC 362 ms
79,860 KB
testcase_19 AC 147 ms
77,624 KB
testcase_20 AC 1,073 ms
84,700 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 x == 0:
    print(c)
    exit()
  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))

0