結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 47 ms
54,144 KB
testcase_05 AC 48 ms
54,400 KB
testcase_06 AC 46 ms
54,272 KB
testcase_07 AC 52 ms
61,824 KB
testcase_08 AC 69 ms
67,200 KB
testcase_09 AC 67 ms
67,968 KB
testcase_10 AC 65 ms
67,456 KB
testcase_11 AC 315 ms
82,132 KB
testcase_12 AC 251 ms
81,988 KB
testcase_13 AC 274 ms
81,908 KB
testcase_14 AC 194 ms
82,304 KB
testcase_15 AC 250 ms
81,920 KB
testcase_16 AC 235 ms
82,176 KB
testcase_17 AC 359 ms
81,920 KB
testcase_18 AC 366 ms
82,064 KB
testcase_19 AC 333 ms
82,176 KB
testcase_20 AC 116 ms
74,112 KB
testcase_21 AC 333 ms
81,664 KB
testcase_22 AC 248 ms
80,260 KB
testcase_23 AC 220 ms
79,872 KB
testcase_24 AC 304 ms
81,024 KB
testcase_25 AC 250 ms
80,424 KB
testcase_26 AC 310 ms
81,568 KB
testcase_27 AC 106 ms
73,984 KB
testcase_28 AC 196 ms
79,360 KB
testcase_29 AC 327 ms
81,408 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