結果

問題 No.1449 新プロランド
ユーザー nasubi24nasubi24
提出日時 2021-03-31 15:39:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,406 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 213,976 KB
最終ジャッジ日時 2024-06-10 10:08:23
合計ジャッジ時間 14,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
77,416 KB
testcase_01 AC 99 ms
79,908 KB
testcase_02 AC 167 ms
82,472 KB
testcase_03 AC 79 ms
78,588 KB
testcase_04 AC 83 ms
78,296 KB
testcase_05 AC 1,406 ms
213,976 KB
testcase_06 AC 737 ms
149,580 KB
testcase_07 AC 802 ms
168,248 KB
testcase_08 AC 656 ms
161,100 KB
testcase_09 AC 439 ms
95,836 KB
testcase_10 AC 1,038 ms
199,680 KB
testcase_11 AC 281 ms
133,368 KB
testcase_12 AC 661 ms
154,080 KB
testcase_13 AC 730 ms
121,920 KB
testcase_14 AC 300 ms
135,700 KB
testcase_15 AC 715 ms
148,492 KB
testcase_16 AC 469 ms
116,396 KB
testcase_17 AC 511 ms
129,156 KB
testcase_18 AC 59 ms
67,792 KB
testcase_19 AC 81 ms
97,628 KB
testcase_20 AC 52 ms
65,576 KB
testcase_21 AC 231 ms
116,760 KB
testcase_22 AC 128 ms
83,604 KB
testcase_23 AC 408 ms
140,428 KB
testcase_24 AC 516 ms
103,156 KB
testcase_25 AC 175 ms
88,976 KB
testcase_26 AC 82 ms
77,792 KB
testcase_27 AC 923 ms
180,420 KB
testcase_28 AC 507 ms
111,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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