結果

問題 No.2739 Time is money
ユーザー yansi819yansi819
提出日時 2024-05-29 10:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 114,336 KB
最終ジャッジ日時 2024-05-29 10:57:22
合計ジャッジ時間 10,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,440 KB
testcase_01 AC 33 ms
53,612 KB
testcase_02 AC 230 ms
95,060 KB
testcase_03 AC 597 ms
106,176 KB
testcase_04 AC 211 ms
94,216 KB
testcase_05 AC 430 ms
97,040 KB
testcase_06 AC 508 ms
101,964 KB
testcase_07 AC 632 ms
113,116 KB
testcase_08 AC 700 ms
113,516 KB
testcase_09 AC 687 ms
114,256 KB
testcase_10 AC 340 ms
108,456 KB
testcase_11 AC 647 ms
114,040 KB
testcase_12 AC 340 ms
109,460 KB
testcase_13 AC 328 ms
109,852 KB
testcase_14 AC 310 ms
109,880 KB
testcase_15 AC 367 ms
112,244 KB
testcase_16 AC 375 ms
106,228 KB
testcase_17 AC 631 ms
113,676 KB
testcase_18 AC 673 ms
114,336 KB
testcase_19 AC 416 ms
111,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
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))
H = [(0, 0)]
heapify(H)
dist = [10 ** 18] * N
dist[0] = 0
while len(H) > 0:
    d, u = heappop(H)
    if d > dist[u]: continue    
    for v, w in G[u]:
        if dist[v] > dist[u] + w:
            dist[v] = dist[u] + w
            heappush(H, (dist[v], v))
if dist[N - 1] == 10 ** 18:
    print(-1)
else:
    print((dist[N - 1] + X - 1) // X)
0