結果

問題 No.1449 新プロランド
ユーザー あかりきあかりき
提出日時 2021-04-12 23:44:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 95,272 KB
最終ジャッジ日時 2024-12-24 02:08:09
合計ジャッジ時間 7,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
62,976 KB
testcase_01 AC 138 ms
78,236 KB
testcase_02 AC 175 ms
79,432 KB
testcase_03 AC 103 ms
77,440 KB
testcase_04 AC 125 ms
77,316 KB
testcase_05 AC 427 ms
95,272 KB
testcase_06 AC 323 ms
88,052 KB
testcase_07 AC 221 ms
85,032 KB
testcase_08 AC 366 ms
92,096 KB
testcase_09 AC 297 ms
85,244 KB
testcase_10 AC 294 ms
88,432 KB
testcase_11 AC 192 ms
86,808 KB
testcase_12 AC 295 ms
90,336 KB
testcase_13 AC 241 ms
83,944 KB
testcase_14 AC 170 ms
85,908 KB
testcase_15 AC 265 ms
88,588 KB
testcase_16 AC 245 ms
85,900 KB
testcase_17 AC 222 ms
86,416 KB
testcase_18 AC 58 ms
64,740 KB
testcase_19 AC 69 ms
73,380 KB
testcase_20 AC 45 ms
60,980 KB
testcase_21 AC 219 ms
86,336 KB
testcase_22 AC 159 ms
78,792 KB
testcase_23 AC 250 ms
90,448 KB
testcase_24 AC 223 ms
82,164 KB
testcase_25 AC 61 ms
68,392 KB
testcase_26 AC 70 ms
73,740 KB
testcase_27 AC 394 ms
95,212 KB
testcase_28 AC 305 ms
88,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
l=[list(map(int,input().split())) for i in range(m)]
t=list(map(int,input().split()))

import heapq
def dijkstra_heap(s,list,n):
  edge=list
  d=[10**18]*n
  used=[True]*n 
  d[s]=0
  used[s]=False
  edgelist=[]
  for e in edge[s]:
    heapq.heappush(edgelist,e)
  while len(edgelist):
    minedge=heapq.heappop(edgelist)
    if not used[minedge[1]]:
      continue
    v=minedge[1]
    d[v]=minedge[0]
    used[v]=False
    for e in edge[v]:
      if used[e[1]]:
        heapq.heappush(edgelist,(e[0]+d[v],e[1]))
  return d

edge=[[] for i in range(n*1001)]
for i in range(m):
  for j in range(1001):
    if j+t[l[i][0]-1]>0:
      edge[j*n+(l[i][0]-1)].append((t[l[i][0]-1]+l[i][2]//(j+t[l[i][0]-1]),min(j+t[l[i][0]-1],1000)*n+l[i][1]-1))
    if j+t[l[i][1]-1]>0:
      edge[j*n+(l[i][1]-1)].append((t[l[i][1]-1]+l[i][2]//(j+t[l[i][1]-1]),min(j+t[l[i][1]-1],1000)*n+l[i][0]-1))

l=dijkstra_heap(0,edge,n*1001)
ans=[]
for i in range(1001):
  ans.append(l[i*n+n-1])
print(min(ans))
0