結果

問題 No.2739 Time is money
ユーザー cho435cho435
提出日時 2024-04-17 01:23:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 117,052 KB
最終ジャッジ日時 2024-10-08 09:55:39
合計ジャッジ時間 13,579 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 266 ms
95,420 KB
testcase_03 AC 697 ms
107,168 KB
testcase_04 AC 243 ms
95,104 KB
testcase_05 AC 490 ms
99,072 KB
testcase_06 AC 710 ms
105,984 KB
testcase_07 AC 721 ms
113,816 KB
testcase_08 AC 787 ms
115,456 KB
testcase_09 AC 753 ms
115,672 KB
testcase_10 AC 398 ms
109,056 KB
testcase_11 AC 819 ms
115,560 KB
testcase_12 AC 363 ms
110,552 KB
testcase_13 AC 410 ms
110,332 KB
testcase_14 AC 389 ms
110,636 KB
testcase_15 AC 439 ms
112,576 KB
testcase_16 AC 384 ms
106,048 KB
testcase_17 AC 867 ms
116,964 KB
testcase_18 AC 887 ms
116,984 KB
testcase_19 AC 631 ms
117,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n, m, x = list(map(int, input().split()))
g = [[] for _ in range(n)]
for i in range(m):
	a, b, c, t = list(map(int, input().split()))
	a -= 1
	b -= 1
	g[a].append((b, t*x + c))
	g[b].append((a, t*x + c))

INF = 10**18
pq = [(0, 0)]
dist = [INF] * n
while pq:
	d, v = heapq.heappop(pq)
	if dist[v]!=INF:
		continue
	dist[v] = d
	for u, c in g[v]:
		if dist[u]==INF:
			heapq.heappush(pq, (d+c, u))

if dist[n-1]==INF:
	print(-1)
else:
	print((dist[n-1]+x-1)//x)
0