結果

問題 No.1449 新プロランド
ユーザー ygd.ygd.
提出日時 2021-03-31 15:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,876 KB
最終ジャッジ日時 2024-06-06 10:57:40
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,292 KB
testcase_01 AC 88 ms
76,720 KB
testcase_02 AC 107 ms
76,912 KB
testcase_03 AC 50 ms
61,920 KB
testcase_04 AC 85 ms
76,200 KB
testcase_05 AC 187 ms
78,876 KB
testcase_06 AC 148 ms
77,344 KB
testcase_07 AC 121 ms
77,252 KB
testcase_08 AC 165 ms
78,380 KB
testcase_09 AC 133 ms
76,716 KB
testcase_10 AC 112 ms
76,924 KB
testcase_11 AC 99 ms
77,468 KB
testcase_12 AC 138 ms
77,696 KB
testcase_13 AC 144 ms
76,992 KB
testcase_14 AC 94 ms
77,184 KB
testcase_15 AC 152 ms
77,120 KB
testcase_16 AC 128 ms
77,276 KB
testcase_17 AC 139 ms
77,588 KB
testcase_18 AC 38 ms
52,940 KB
testcase_19 AC 39 ms
54,180 KB
testcase_20 AC 39 ms
52,956 KB
testcase_21 AC 99 ms
76,584 KB
testcase_22 AC 92 ms
76,428 KB
testcase_23 AC 107 ms
77,180 KB
testcase_24 AC 121 ms
76,460 KB
testcase_25 AC 39 ms
54,524 KB
testcase_26 AC 59 ms
68,556 KB
testcase_27 AC 206 ms
78,648 KB
testcase_28 AC 145 ms
76,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N,M = map(int,input().split()); INF = float("inf")
G = [[] for _ in range(N)]
for _ in range(M):
    a,b,c = map(int,input().split())
    a-=1;b-=1
    G[a].append((c,b))
    G[b].append((c,a))
T = list(map(int,input().split()))
MAX = pow(10,3) + 10
#dp[i][j]: i番目の街にいて、おにぎりを計j分食べた時の最小値
dp = [[INF]*MAX for _ in range(N)]
#dp[0][T[0]] = 0

#S:start, V: node, E: Edge, G: Graph
V = len(G)
PQ = []
s = 0
heappush(PQ,(0,s,T[0])) #時間:c,町:v,おにぎり:p
dp[0][T[0]] = T[0]
  
while PQ:
    c,v,p = heappop(PQ) #おにぎりを食べて到着
    #print(c,v,p,dp[v][p])
    #ここで食べる
    #print(c,v,p,dp[v][p])
    #if dp[v][p] < c:
    #    continue
    #dp[v][p] = c
    for dis,u in G[v]:
        np = min(p + T[u], 1001)
        if dp[u][np] <= dis//p + dp[v][p] + T[u]:
            continue
        dp[u][np] = dis//p + dp[v][p] + T[u]
        #print(u,dp[u][np])
        heappush(PQ,(dp[u][np], u, np))
#print(dp)
ans = min(dp[N-1])
print(ans)
0