結果

問題 No.2739 Time is money
ユーザー yansi819yansi819
提出日時 2024-05-29 09:27:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 159,420 KB
最終ジャッジ日時 2024-05-29 09:27:40
合計ジャッジ時間 17,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,464 KB
testcase_01 AC 32 ms
53,144 KB
testcase_02 AC 263 ms
113,376 KB
testcase_03 AC 955 ms
142,772 KB
testcase_04 AC 246 ms
112,936 KB
testcase_05 AC 696 ms
124,248 KB
testcase_06 AC 843 ms
136,796 KB
testcase_07 AC 1,127 ms
155,840 KB
testcase_08 AC 1,139 ms
159,344 KB
testcase_09 AC 1,189 ms
159,144 KB
testcase_10 AC 458 ms
144,304 KB
testcase_11 AC 1,193 ms
159,420 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 793 ms
144,792 KB
testcase_17 AC 1,092 ms
158,764 KB
testcase_18 AC 1,104 ms
152,724 KB
testcase_19 AC 827 ms
139,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N, M, X = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v, C, T = map(int, input().split())
    u -= 1; v -= 1
    G[u].append((v, C, T))
    G[v].append((u, C, T))
H = [(0, 0, 0)]
heapify(H)
vis = [False] * N
vis[0] = True
Time = [10 ** 9] * N
Time[0] = 0
Cost = [0] * N
while len(H) > 0:
    T, u, C = heappop(H)
    for v, C1, T1 in G[u]:
        if vis[v]: continue
        if Time[v] > Time[u] + T1:
            Time[v] = Time[u] + T1
            Cost[v] = Cost[u] + C1
            heappush(H, (Time[v], v, Cost[v]))
if Time[N - 1] == 10 ** 9:
    print(-1)
else:
    print(Time[N - 1] + (Cost[N - 1] + X - 1) // X)
0