結果
問題 | No.2739 Time is money |
ユーザー |
|
提出日時 | 2024-09-29 18:22:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 82,656 KB |
実行使用メモリ | 130,100 KB |
最終ジャッジ日時 | 2024-09-29 18:35:07 |
合計ジャッジ時間 | 11,999 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 WA * 3 |
ソースコード
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))edge[v].append((u,t+c/X))from heapq import heappush, heappopINF = 10**12def 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) if ans != INF else -1)