結果

問題 No.1449 新プロランド
ユーザー nasubi24nasubi24
提出日時 2021-03-31 15:49:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 122,496 KB
最終ジャッジ日時 2024-06-06 10:59:31
合計ジャッジ時間 6,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
77,184 KB
testcase_01 AC 96 ms
77,952 KB
testcase_02 AC 135 ms
79,488 KB
testcase_03 AC 79 ms
74,496 KB
testcase_04 AC 92 ms
77,696 KB
testcase_05 AC 512 ms
122,496 KB
testcase_06 AC 317 ms
102,272 KB
testcase_07 AC 316 ms
106,112 KB
testcase_08 AC 266 ms
103,808 KB
testcase_09 AC 224 ms
83,200 KB
testcase_10 AC 390 ms
115,200 KB
testcase_11 AC 153 ms
94,592 KB
testcase_12 AC 268 ms
101,504 KB
testcase_13 AC 318 ms
93,312 KB
testcase_14 AC 149 ms
94,720 KB
testcase_15 AC 287 ms
99,712 KB
testcase_16 AC 215 ms
90,112 KB
testcase_17 AC 241 ms
94,336 KB
testcase_18 AC 63 ms
66,816 KB
testcase_19 AC 57 ms
70,784 KB
testcase_20 AC 57 ms
63,872 KB
testcase_21 AC 134 ms
88,192 KB
testcase_22 AC 112 ms
78,208 KB
testcase_23 AC 182 ms
95,616 KB
testcase_24 AC 264 ms
86,528 KB
testcase_25 AC 121 ms
80,768 KB
testcase_26 AC 90 ms
77,568 KB
testcase_27 AC 370 ms
112,256 KB
testcase_28 AC 232 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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