結果

問題 No.2739 Time is money
ユーザー 👑 rin204rin204
提出日時 2024-04-20 13:07:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,084 KB
最終ジャッジ日時 2024-10-12 08:31:54
合計ジャッジ時間 11,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 273 ms
94,848 KB
testcase_03 AC 627 ms
103,212 KB
testcase_04 AC 263 ms
94,548 KB
testcase_05 AC 472 ms
95,632 KB
testcase_06 AC 568 ms
99,968 KB
testcase_07 AC 721 ms
110,592 KB
testcase_08 AC 728 ms
111,084 KB
testcase_09 AC 756 ms
110,752 KB
testcase_10 AC 454 ms
108,288 KB
testcase_11 AC 757 ms
110,920 KB
testcase_12 AC 476 ms
109,824 KB
testcase_13 AC 481 ms
109,832 KB
testcase_14 AC 456 ms
109,952 KB
testcase_15 AC 407 ms
110,304 KB
testcase_16 AC 388 ms
104,192 KB
testcase_17 AC 696 ms
110,208 KB
testcase_18 AC 697 ms
110,000 KB
testcase_19 AC 488 ms
109,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n, m, x = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v, c, t = map(int, input().split())
    c += t * x
    u -= 1
    v -= 1
    edges[u].append((v, c))
    edges[v].append((u, c))

dist = [1 << 60] * n
dist[0] = 0
hq = [0]
while hq:
    tmp = heappop(hq)
    d = tmp // n
    pos = tmp - d * n
    if dist[pos] < d:
        continue
    for to, cost in edges[pos]:
        if dist[to] > d + cost:
            dist[to] = d + cost
            heappush(hq, to + n * dist[to])

ans = (dist[-1] + x - 1) // x if dist[-1] != 1 << 60 else -1
print(ans)
0