結果

問題 No.2739 Time is money
ユーザー ああいいああいい
提出日時 2024-04-29 15:05:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,284 KB
最終ジャッジ日時 2024-11-18 19:35:44
合計ジャッジ時間 14,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 276 ms
95,048 KB
testcase_03 AC 771 ms
108,092 KB
testcase_04 AC 264 ms
94,336 KB
testcase_05 AC 556 ms
99,012 KB
testcase_06 AC 667 ms
103,332 KB
testcase_07 AC 820 ms
116,468 KB
testcase_08 AC 849 ms
117,284 KB
testcase_09 AC 901 ms
117,248 KB
testcase_10 AC 446 ms
108,288 KB
testcase_11 AC 905 ms
117,020 KB
testcase_12 AC 420 ms
109,952 KB
testcase_13 AC 410 ms
110,080 KB
testcase_14 AC 406 ms
111,488 KB
testcase_15 AC 453 ms
114,320 KB
testcase_16 AC 431 ms
107,904 KB
testcase_17 AC 823 ms
115,840 KB
testcase_18 AC 863 ms
116,256 KB
testcase_19 AC 557 ms
113,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())

G = [[] for _ in range(N)]
for _ in range(M):
    u,v,c,t = map(int,input().split())
    u -= 1
    v -= 1
    G[u].append((v,c + t * X))
    G[v].append((u,c + t * X))

import heapq
q = [(0,0)]

inf = 10 ** 20

dist = [inf] * N
dist[0] = 0
while q:
    d,now = heapq.heappop(q)
    if d > dist[now]:continue
    for v,c in G[now]:
        if dist[v] > d + c:
            dist[v] = d + c
            heapq.heappush(q,(d + c,v))
if dist[-1] == inf:
    print(-1)
else:
    k = dist[-1]
    print((k + X - 1) // X)
0