結果

問題 No.2739 Time is money
ユーザー noriocnorioc
提出日時 2024-04-22 02:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,516 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 195,884 KB
最終ジャッジ日時 2024-10-14 00:56:51
合計ジャッジ時間 17,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 322 ms
117,132 KB
testcase_03 AC 813 ms
150,120 KB
testcase_04 AC 299 ms
117,048 KB
testcase_05 AC 511 ms
126,324 KB
testcase_06 AC 1,033 ms
153,500 KB
testcase_07 AC 1,138 ms
179,272 KB
testcase_08 AC 756 ms
163,872 KB
testcase_09 AC 842 ms
166,708 KB
testcase_10 AC 520 ms
156,216 KB
testcase_11 AC 1,485 ms
195,884 KB
testcase_12 AC 469 ms
181,636 KB
testcase_13 AC 464 ms
181,660 KB
testcase_14 AC 436 ms
168,112 KB
testcase_15 AC 937 ms
164,544 KB
testcase_16 AC 337 ms
140,676 KB
testcase_17 AC 1,516 ms
188,676 KB
testcase_18 AC 1,454 ms
181,568 KB
testcase_19 AC 1,075 ms
159,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappush, heappop

N, M, X = map(int, input().split())
adj = defaultdict(list)
for _ in range(M):
    u, v, C, T = map(int, input().split())
    u -= 1
    v -= 1
    adj[u].append((v, C, T))
    adj[v].append((u, C, T))

q = [(0, 0, 0)]  # (time, money, 頂点)
used = set()
while q:
    time, money, v = heappop(q)
    money = -money
    if v == N-1:
        print(time)
        exit()
    if v in used: continue
    used.add(v)

    for to, c, t in adj[v]:
        if to in used: continue
        if money >= c:
            heappush(q, (time+t, -(money-c), to))
        else:
            lack = c - money
            d = (lack + X - 1) // X
            m2 = money + X * d - c
            t2 = time + d + t
            heappush(q, (t2, -m2, to))

print(-1)
0