結果

問題 No.2739 Time is money
ユーザー tassei903tassei903
提出日時 2024-04-17 03:22:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 739 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 172,144 KB
最終ジャッジ日時 2024-10-08 13:07:41
合計ジャッジ時間 6,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
93,824 KB
testcase_01 AC 137 ms
88,356 KB
testcase_02 AC 713 ms
133,632 KB
testcase_03 TLE -
testcase_04 AC 650 ms
132,584 KB
testcase_05 AC 1,939 ms
147,916 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from fractions import Fraction
INF = 10**18
def dijkstra(g, s, n):
    dist = [INF]*n
    hq = [(0, s)]
    dist[s] = 0
    while hq:
        d, v = heappop(hq)
        if dist[v]!=d:
            continue
        for to, c in g[v]:
            if dist[v] + c < dist[to]:
                dist[to] = dist[v] + c
                heappush(hq, (dist[to], to))
    return dist
from math import ceil
n, m, x = list(map(int, input().split()))
g = [[] for _ in range(n)]

for i in range(m):
    u,v,c,t = list(map(int, input().split()))
    u -= 1
    v -= 1
    g[u].append((v,t+c / Fraction(x)))
    g[v].append((u,t+c / Fraction(x)))

dist = dijkstra(g, 0, n)
if dist[-1] == INF:
    print(-1)
else:
    print(ceil(dist[-1]))
0