結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
62,592 KB
testcase_01 AC 129 ms
78,228 KB
testcase_02 AC 158 ms
79,428 KB
testcase_03 AC 88 ms
77,184 KB
testcase_04 AC 108 ms
77,244 KB
testcase_05 AC 343 ms
94,852 KB
testcase_06 AC 270 ms
87,852 KB
testcase_07 AC 197 ms
85,116 KB
testcase_08 AC 319 ms
91,588 KB
testcase_09 AC 261 ms
85,176 KB
testcase_10 AC 257 ms
88,104 KB
testcase_11 AC 178 ms
86,632 KB
testcase_12 AC 285 ms
89,768 KB
testcase_13 AC 242 ms
84,020 KB
testcase_14 AC 173 ms
85,864 KB
testcase_15 AC 260 ms
88,652 KB
testcase_16 AC 255 ms
85,844 KB
testcase_17 AC 226 ms
86,220 KB
testcase_18 AC 58 ms
64,640 KB
testcase_19 AC 72 ms
72,576 KB
testcase_20 AC 47 ms
59,392 KB
testcase_21 AC 212 ms
86,164 KB
testcase_22 AC 160 ms
78,348 KB
testcase_23 AC 248 ms
90,380 KB
testcase_24 AC 230 ms
81,956 KB
testcase_25 AC 64 ms
67,328 KB
testcase_26 AC 80 ms
73,600 KB
testcase_27 AC 402 ms
94,752 KB
testcase_28 AC 303 ms
87,840 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