結果

問題 No.1449 新プロランド
ユーザー nasubi24nasubi24
提出日時 2021-03-31 15:30:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 67,672 KB
最終ジャッジ日時 2024-12-24 01:54:26
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,876 KB
testcase_01 AC 43 ms
60,660 KB
testcase_02 AC 47 ms
59,860 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 47 ms
66,112 KB
testcase_06 AC 45 ms
64,376 KB
testcase_07 AC 46 ms
64,624 KB
testcase_08 AC 49 ms
67,508 KB
testcase_09 AC 44 ms
60,724 KB
testcase_10 AC 45 ms
66,552 KB
testcase_11 AC 45 ms
65,952 KB
testcase_12 AC 48 ms
66,388 KB
testcase_13 AC 44 ms
62,620 KB
testcase_14 AC 48 ms
66,384 KB
testcase_15 AC 49 ms
64,808 KB
testcase_16 AC 46 ms
62,628 KB
testcase_17 AC 44 ms
63,760 KB
testcase_18 AC 42 ms
60,548 KB
testcase_19 AC 46 ms
64,704 KB
testcase_20 AC 42 ms
59,348 KB
testcase_21 AC 43 ms
63,968 KB
testcase_22 AC 41 ms
59,672 KB
testcase_23 AC 45 ms
67,672 KB
testcase_24 WA -
testcase_25 AC 41 ms
59,972 KB
testcase_26 WA -
testcase_27 AC 44 ms
67,028 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
ans=[[10**10]*(10**4+10) 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]
        cnt=num3+num2[i][1]//h2+t[j]
        if ans[j][h2+t[j]]>cnt and seen[j]==False:
            ans[j][h2+t[j]]=cnt
            queue.append([j,h2+t[j]])
print(min(ans[-1]))
0