結果

問題 No.1449 新プロランド
ユーザー nasubi24nasubi24
提出日時 2021-03-31 19:55:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 764 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 271,300 KB
最終ジャッジ日時 2024-06-06 11:02:54
合計ジャッジ時間 19,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
77,696 KB
testcase_01 AC 117 ms
82,688 KB
testcase_02 AC 215 ms
85,632 KB
testcase_03 AC 84 ms
79,488 KB
testcase_04 AC 89 ms
79,360 KB
testcase_05 TLE -
testcase_06 AC 1,096 ms
188,468 KB
testcase_07 AC 1,196 ms
217,600 KB
testcase_08 AC 957 ms
204,536 KB
testcase_09 AC 638 ms
107,368 KB
testcase_10 AC 1,534 ms
267,008 KB
testcase_11 AC 390 ms
165,376 KB
testcase_12 AC 955 ms
193,492 KB
testcase_13 AC 1,065 ms
146,688 KB
testcase_14 AC 427 ms
167,612 KB
testcase_15 AC 1,016 ms
187,008 KB
testcase_16 AC 693 ms
136,648 KB
testcase_17 AC 765 ms
157,804 KB
testcase_18 AC 62 ms
68,864 KB
testcase_19 AC 96 ms
115,328 KB
testcase_20 AC 56 ms
64,856 KB
testcase_21 AC 319 ms
137,472 KB
testcase_22 AC 161 ms
86,784 KB
testcase_23 AC 599 ms
174,752 KB
testcase_24 AC 768 ms
117,580 KB
testcase_25 AC 223 ms
95,872 KB
testcase_26 AC 96 ms
79,936 KB
testcase_27 AC 1,357 ms
236,032 KB
testcase_28 AC 734 ms
131,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
ans=[[10**10]*(10**5) for _ in range(n)]
num=[[] for _ in range(n)]
for i in range(m):
    a,b,c=map(int,input().split())
    num[a-1].append([b-1,c])
    num[b-1].append([a-1,c])
t=list(map(int,input().split()))
ans[0][t[0]]=t[0]
queue=deque()
queue.append([0,t[0]])
seen=[False]*n
seen[0]=True
while len(queue)!=0 or min(ans[-1])==10**10:
    num1=queue.popleft()
    h1=num1[0]
    h2=num1[1]
    num2=num[h1]
    seen[h1]=True
    num3=ans[h1][h2]
    for i in range(len(num2)):
        j=num2[i][0]
        if h2+t[j]<10**5:
       	    cnt=num3+num2[i][1]//h2+t[j]
            if ans[j][h2+t[j]]>cnt:
                ans[j][h2+t[j]]=cnt
                queue.append([j,h2+t[j]])
print(min(ans[-1]))
0