結果

問題 No.1449 新プロランド
ユーザー あかりきあかりき
提出日時 2021-04-12 23:41:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 956 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,280 KB
最終ジャッジ日時 2024-06-06 11:08:49
合計ジャッジ時間 6,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,032 KB
testcase_01 AC 145 ms
78,040 KB
testcase_02 AC 173 ms
79,384 KB
testcase_03 AC 80 ms
75,112 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 276 ms
87,504 KB
testcase_07 AC 193 ms
85,164 KB
testcase_08 RE -
testcase_09 AC 297 ms
85,504 KB
testcase_10 RE -
testcase_11 AC 171 ms
86,264 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 AC 158 ms
85,900 KB
testcase_15 WA -
testcase_16 AC 247 ms
85,784 KB
testcase_17 WA -
testcase_18 AC 55 ms
64,640 KB
testcase_19 AC 69 ms
72,064 KB
testcase_20 AC 46 ms
59,264 KB
testcase_21 AC 178 ms
85,800 KB
testcase_22 AC 141 ms
78,760 KB
testcase_23 AC 222 ms
90,448 KB
testcase_24 WA -
testcase_25 AC 59 ms
66,560 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

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):
    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))
    edge[j*n+(l[i][1]-1)].append((t[l[i][1]-1]+l[i][2]//(j+t[l[i][0]-1]),min(j+t[l[i][0]-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