結果

問題 No.2179 Planet Traveler
ユーザー qibqib
提出日時 2023-01-10 01:33:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 3,000 ms
コード長 1,089 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 82,164 KB
最終ジャッジ日時 2024-12-20 02:17:02
合計ジャッジ時間 6,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,052 KB
testcase_01 AC 44 ms
56,104 KB
testcase_02 AC 43 ms
55,092 KB
testcase_03 AC 43 ms
53,856 KB
testcase_04 AC 42 ms
55,396 KB
testcase_05 AC 42 ms
56,112 KB
testcase_06 AC 41 ms
54,456 KB
testcase_07 AC 50 ms
62,088 KB
testcase_08 AC 62 ms
68,920 KB
testcase_09 AC 64 ms
69,360 KB
testcase_10 AC 61 ms
68,388 KB
testcase_11 AC 301 ms
81,988 KB
testcase_12 AC 241 ms
82,084 KB
testcase_13 AC 256 ms
81,900 KB
testcase_14 AC 175 ms
81,952 KB
testcase_15 AC 234 ms
82,164 KB
testcase_16 AC 216 ms
81,892 KB
testcase_17 AC 339 ms
81,992 KB
testcase_18 AC 375 ms
81,964 KB
testcase_19 AC 315 ms
81,772 KB
testcase_20 AC 100 ms
74,252 KB
testcase_21 AC 314 ms
81,764 KB
testcase_22 AC 228 ms
79,988 KB
testcase_23 AC 200 ms
79,880 KB
testcase_24 AC 285 ms
80,888 KB
testcase_25 AC 226 ms
80,000 KB
testcase_26 AC 288 ms
81,384 KB
testcase_27 AC 100 ms
74,072 KB
testcase_28 AC 175 ms
78,964 KB
testcase_29 AC 293 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import math

INF = 4 * 10 ** 9

n = int(input())
points = [list(map(int, input().split())) for _ in range(n)]

dist = [[0 for _ in range(n)] for _ in range(n)]
for u in range(n - 1):
  xu, yu, tu = points[u]
  for v in range(u + 1, n):
    xv, yv, tv = points[v]
    if tu == tv:
      d = (xv - xu) ** 2 + (yv - yu) ** 2
    else:
      ok = 0
      ng = INF
      target = 4 * (xu ** 2 + yu ** 2) * (xv ** 2 + yv ** 2)
      while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if mid * mid <= target:
          ok = mid
        else:
          ng = mid

      d = (xu ** 2 + yu ** 2) + (xv ** 2 + yv ** 2) - ok
    
    dist[u][v] = d
    dist[v][u] = d

src = 0
dst = n - 1

ng = -1
ok = INF
while abs(ok - ng) > 1:
  mid = (ok + ng) // 2
  d = [INF for _ in range(n)]
  d[src] = 0
  dq = deque([src])
  while len(dq) > 0:
    cur = dq.popleft()
    for nxt in range(n):
      if d[nxt] < INF or dist[cur][nxt] > mid:
        continue

      d[nxt] = d[cur] + 1
      dq.append(nxt)

  if d[dst] < INF:
    ok = mid
  else:
    ng = mid

print(ok)
0