結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
80,768 KB
testcase_01 AC 140 ms
85,488 KB
testcase_02 AC 226 ms
86,144 KB
testcase_03 AC 91 ms
80,896 KB
testcase_04 AC 106 ms
82,560 KB
testcase_05 AC 633 ms
132,864 KB
testcase_06 AC 390 ms
109,696 KB
testcase_07 AC 396 ms
115,840 KB
testcase_08 AC 309 ms
108,544 KB
testcase_09 AC 349 ms
89,856 KB
testcase_10 AC 479 ms
126,348 KB
testcase_11 AC 162 ms
99,840 KB
testcase_12 AC 321 ms
108,860 KB
testcase_13 AC 462 ms
102,400 KB
testcase_14 AC 164 ms
99,584 KB
testcase_15 AC 348 ms
106,880 KB
testcase_16 AC 284 ms
97,024 KB
testcase_17 AC 284 ms
99,840 KB
testcase_18 AC 64 ms
71,168 KB
testcase_19 AC 59 ms
74,368 KB
testcase_20 AC 59 ms
68,864 KB
testcase_21 AC 141 ms
92,928 KB
testcase_22 AC 150 ms
84,608 KB
testcase_23 AC 204 ms
100,864 KB
testcase_24 AC 439 ms
98,304 KB
testcase_25 AC 165 ms
87,040 KB
testcase_26 AC 116 ms
83,456 KB
testcase_27 AC 426 ms
119,168 KB
testcase_28 AC 320 ms
95,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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