結果

問題 No.2387 Yokan Factory
ユーザー sepa38sepa38
提出日時 2023-07-21 21:45:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,393 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-09-21 23:12:41
合計ジャッジ時間 13,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 41 ms
52,352 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
52,736 KB
testcase_15 AC 735 ms
113,864 KB
testcase_16 AC 435 ms
110,040 KB
testcase_17 AC 1,251 ms
128,512 KB
testcase_18 AC 1,060 ms
109,764 KB
testcase_19 AC 743 ms
100,356 KB
testcase_20 AC 431 ms
94,076 KB
testcase_21 AC 1,393 ms
114,688 KB
testcase_22 AC 485 ms
93,604 KB
testcase_23 AC 1,390 ms
103,708 KB
testcase_24 AC 588 ms
94,480 KB
testcase_25 AC 550 ms
91,960 KB
testcase_26 AC 801 ms
105,640 KB
testcase_27 AC 461 ms
104,840 KB
testcase_28 AC 81 ms
74,368 KB
testcase_29 AC 95 ms
76,800 KB
testcase_30 AC 123 ms
77,620 KB
testcase_31 AC 117 ms
76,536 KB
testcase_32 AC 101 ms
76,436 KB
testcase_33 AC 96 ms
76,240 KB
testcase_34 AC 128 ms
77,772 KB
testcase_35 AC 121 ms
77,044 KB
testcase_36 AC 58 ms
63,360 KB
testcase_37 AC 42 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n, m, x = map(int, input().split())
e = [[] for _ in range(n)]
for _ in range(m):
  u, v, a, b = map(int, input().split())
  u -= 1
  v -= 1
  e[u].append([v, a, b])
  e[v].append([u, a, b])
l, r = -1, 1 << 30
while r - l > 1:
  piv = (l + r) // 2
  dist = [1 << 60] * n
  dist[0] = 0
  h = [0]
  while h:
    tmp = heapq.heappop(h)
    d, u = divmod(tmp, n)
    if d > x:
      break
    if u == n:
      break
    if dist[u] < d:
      continue
    for v, a, b in e[u]:
      if b < piv:
        continue
      if d + a < dist[v]:
        dist[v] = d + a
        heapq.heappush(h, dist[v]*n+v)
  if dist[-1] <= x:
    l = piv
  else:
    r = piv
print(l)
0