結果

問題 No.2739 Time is money
ユーザー noriocnorioc
提出日時 2024-04-22 02:12:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 195,856 KB
最終ジャッジ日時 2024-10-14 00:53:08
合計ジャッジ時間 17,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 363 ms
117,264 KB
testcase_03 AC 771 ms
149,996 KB
testcase_04 AC 300 ms
116,924 KB
testcase_05 AC 565 ms
126,068 KB
testcase_06 AC 1,229 ms
154,032 KB
testcase_07 AC 1,101 ms
179,360 KB
testcase_08 AC 744 ms
164,768 KB
testcase_09 AC 815 ms
164,396 KB
testcase_10 AC 498 ms
156,096 KB
testcase_11 AC 1,465 ms
195,856 KB
testcase_12 AC 444 ms
181,388 KB
testcase_13 AC 439 ms
181,520 KB
testcase_14 AC 409 ms
168,120 KB
testcase_15 WA -
testcase_16 AC 315 ms
140,672 KB
testcase_17 AC 1,371 ms
187,376 KB
testcase_18 AC 1,376 ms
179,780 KB
testcase_19 AC 983 ms
156,360 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)
    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