結果

問題 No.1449 新プロランド
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-11 05:31:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 77,888 KB
最終ジャッジ日時 2024-09-11 05:31:32
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,368 KB
testcase_01 AC 39 ms
54,164 KB
testcase_02 AC 40 ms
54,300 KB
testcase_03 AC 40 ms
53,480 KB
testcase_04 AC 94 ms
76,516 KB
testcase_05 AC 75 ms
73,696 KB
testcase_06 AC 42 ms
54,600 KB
testcase_07 AC 40 ms
55,144 KB
testcase_08 AC 44 ms
54,920 KB
testcase_09 AC 40 ms
52,892 KB
testcase_10 AC 41 ms
53,920 KB
testcase_11 AC 41 ms
53,680 KB
testcase_12 AC 50 ms
63,012 KB
testcase_13 AC 42 ms
54,260 KB
testcase_14 AC 41 ms
53,756 KB
testcase_15 AC 42 ms
53,548 KB
testcase_16 AC 42 ms
54,064 KB
testcase_17 AC 56 ms
66,120 KB
testcase_18 AC 39 ms
53,388 KB
testcase_19 AC 40 ms
53,868 KB
testcase_20 AC 38 ms
53,204 KB
testcase_21 AC 40 ms
53,724 KB
testcase_22 AC 40 ms
54,380 KB
testcase_23 AC 43 ms
54,580 KB
testcase_24 AC 42 ms
54,044 KB
testcase_25 AC 40 ms
53,412 KB
testcase_26 AC 41 ms
54,508 KB
testcase_27 AC 130 ms
77,888 KB
testcase_28 AC 66 ms
69,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[] for i in range(n)]
for i in range(m):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[(b,c)]
  e[b]+=[(a,c)]
o=list(map(int,input().split()))
X=10**10
v=[[(X,X)]*1002 for i in range(n)]
v[0][1]=(0,0)
q=[(v[0][1],0,1)]
from heapq import heappush,heappop
while len(q)>0:
  sc,sp,so=heappop(q)
  if sc>v[sp][so]:
    continue
  if sp==n-1:
    break
  st1,st2=sc[0],-sc[1]
  tt2=st2+o[sp]
  to=so+1
  for tp,tc in e[sp]:
    tt1=st1+o[sp]+tc//tt2
    if to<=1001 and v[tp][to]>(tt1,-tt2):
      v[tp][to]=(tt1,-tt2)
      heappush(q,(v[tp][to],tp,to))
print(min(v[n-1][i][0] for i in range(1002)))
0