結果

問題 No.2739 Time is money
ユーザー tassei903tassei903
提出日時 2024-04-17 03:20:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-10-08 13:04:09
合計ジャッジ時間 12,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 273 ms
95,616 KB
testcase_03 AC 683 ms
106,036 KB
testcase_04 AC 282 ms
95,112 KB
testcase_05 AC 500 ms
97,664 KB
testcase_06 AC 594 ms
102,016 KB
testcase_07 AC 781 ms
113,664 KB
testcase_08 AC 795 ms
114,816 KB
testcase_09 AC 776 ms
114,780 KB
testcase_10 AC 432 ms
109,184 KB
testcase_11 AC 764 ms
114,816 KB
testcase_12 AC 423 ms
110,464 KB
testcase_13 AC 403 ms
110,464 KB
testcase_14 AC 400 ms
110,548 KB
testcase_15 AC 470 ms
112,572 KB
testcase_16 AC 444 ms
106,284 KB
testcase_17 AC 786 ms
114,148 KB
testcase_18 AC 806 ms
114,304 KB
testcase_19 AC 569 ms
114,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
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

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*x+c))
    g[v].append((u,t*x+c))

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