結果

問題 No.2739 Time is money
ユーザー lloyzlloyz
提出日時 2024-05-01 20:19:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,372 KB
最終ジャッジ日時 2024-11-22 02:37:55
合計ジャッジ時間 14,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 285 ms
100,132 KB
testcase_03 AC 755 ms
113,056 KB
testcase_04 AC 286 ms
100,976 KB
testcase_05 AC 559 ms
101,956 KB
testcase_06 AC 674 ms
106,500 KB
testcase_07 AC 845 ms
130,480 KB
testcase_08 AC 863 ms
131,372 KB
testcase_09 AC 897 ms
128,556 KB
testcase_10 AC 488 ms
126,776 KB
testcase_11 AC 884 ms
128,672 KB
testcase_12 AC 347 ms
125,876 KB
testcase_13 AC 360 ms
126,124 KB
testcase_14 AC 348 ms
126,904 KB
testcase_15 AC 480 ms
116,032 KB
testcase_16 AC 469 ms
117,884 KB
testcase_17 AC 853 ms
125,268 KB
testcase_18 AC 860 ms
125,584 KB
testcase_19 AC 554 ms
117,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
from collections import defaultdict

n, m, x = map(int, input().split())
G = defaultdict(list)
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))
INF = 10**18
DP = [INF for _ in range(n)]
DP[0] = 0
H = [(0, 0)]
while H:
    cc, cp = heappop(H)
    if cc > DP[cp]:
        continue
    for np, dc in G[cp]:
        nc = cc + dc
        if nc >= DP[np]:
            continue
        DP[np] = nc
        heappush(H, (nc, np))
ans = DP[n - 1]
if ans == INF:
    ans = -1
else:
    ans = (ans + x - 1) // x
print(ans)
0