結果
問題 | No.2739 Time is money |
ユーザー |
|
提出日時 | 2024-09-29 19:04:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 688 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 130,380 KB |
最終ジャッジ日時 | 2024-09-29 19:05:12 |
合計ジャッジ時間 | 13,554 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 WA * 1 |
ソースコード
N,M,X = map(int, input().split())edge = [[] for i in range(N)]for i in range(M):u,v,c,t = map(int, input().split())u-=1;v-=1edge[u].append((v,(t+c/X)*10**6))edge[v].append((u,(t+c/X)*10**6))from heapq import *INF = 10**18def dijkstra(N, edge, s):dist = [INF] * Nque = [(0, s)]dist[s] = 0while que:c, v = heappop(que)if dist[v] < c:continuefor t, cost in edge[v]:if dist[v] + cost < dist[t]:dist[t] = dist[v] + costheappush(que, (dist[t], t))return distimport mathd = dijkstra(N,edge,0)ans = d[-1]print(math.ceil(ans/10**6) if ans != INF else -1)