結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 41 ms
54,528 KB
testcase_02 AC 247 ms
100,132 KB
testcase_03 AC 620 ms
113,188 KB
testcase_04 AC 247 ms
101,236 KB
testcase_05 AC 459 ms
101,952 KB
testcase_06 AC 574 ms
106,404 KB
testcase_07 AC 706 ms
130,744 KB
testcase_08 AC 732 ms
131,616 KB
testcase_09 AC 725 ms
128,420 KB
testcase_10 AC 419 ms
126,988 KB
testcase_11 AC 745 ms
128,548 KB
testcase_12 AC 344 ms
126,216 KB
testcase_13 AC 320 ms
126,268 KB
testcase_14 AC 296 ms
126,644 KB
testcase_15 AC 416 ms
116,296 KB
testcase_16 AC 439 ms
117,772 KB
testcase_17 AC 710 ms
125,392 KB
testcase_18 AC 739 ms
125,832 KB
testcase_19 AC 482 ms
118,232 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