結果

問題 No.1449 新プロランド
ユーザー nasubi24nasubi24
提出日時 2021-03-31 15:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-06-06 10:58:58
合計ジャッジ時間 5,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,944 KB
testcase_01 AC 76 ms
77,152 KB
testcase_02 AC 94 ms
77,184 KB
testcase_03 AC 63 ms
69,248 KB
testcase_04 AC 69 ms
71,936 KB
testcase_05 AC 389 ms
107,264 KB
testcase_06 AC 242 ms
93,952 KB
testcase_07 AC 233 ms
96,080 KB
testcase_08 AC 208 ms
94,080 KB
testcase_09 AC 161 ms
80,256 KB
testcase_10 AC 292 ms
102,656 KB
testcase_11 AC 127 ms
89,432 KB
testcase_12 AC 208 ms
92,672 KB
testcase_13 AC 233 ms
86,144 KB
testcase_14 AC 124 ms
90,076 KB
testcase_15 AC 218 ms
92,032 KB
testcase_16 AC 164 ms
84,608 KB
testcase_17 AC 187 ms
89,344 KB
testcase_18 AC 52 ms
62,464 KB
testcase_19 AC 49 ms
66,304 KB
testcase_20 AC 47 ms
59,392 KB
testcase_21 AC 108 ms
85,088 KB
testcase_22 AC 87 ms
77,400 KB
testcase_23 AC 144 ms
89,344 KB
testcase_24 AC 172 ms
81,408 KB
testcase_25 AC 91 ms
77,696 KB
testcase_26 AC 69 ms
72,576 KB
testcase_27 AC 283 ms
99,072 KB
testcase_28 AC 178 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
ans=[[10**10]*(11**4+200) 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:
    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]<11**4+200:
       	    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