結果

問題 No.94 圏外です。(EASY)
ユーザー qibqib
提出日時 2023-02-18 21:19:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 914 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,864 KB
最終ジャッジ日時 2024-07-20 04:57:06
合計ジャッジ時間 2,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 59 ms
62,720 KB
testcase_05 AC 70 ms
65,024 KB
testcase_06 AC 76 ms
66,816 KB
testcase_07 AC 71 ms
69,760 KB
testcase_08 AC 92 ms
80,896 KB
testcase_09 AC 107 ms
84,480 KB
testcase_10 AC 108 ms
84,480 KB
testcase_11 AC 108 ms
84,480 KB
testcase_12 AC 110 ms
84,608 KB
testcase_13 AC 111 ms
84,480 KB
testcase_14 AC 114 ms
84,608 KB
testcase_15 AC 112 ms
84,864 KB
testcase_16 AC 105 ms
84,608 KB
testcase_17 AC 105 ms
84,864 KB
testcase_18 AC 106 ms
84,480 KB
testcase_19 AC 110 ms
84,480 KB
testcase_20 AC 45 ms
54,528 KB
testcase_21 AC 43 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import math

n = int(input())

if n == 0:
  print("1.0")
  exit()

dist = [[1 << 60 for _ in range(n)] for _ in range(n)]

points = [list(map(int, input().split())) for _ in range(n)]
g = [[] for _ in range(n)]
for i in range(n - 1):
  xi, yi = points[i]
  for j in range(i + 1, n):
    xj, yj = points[j]
    d2 = (xj - xi) ** 2 + (yj - yi) ** 2
    dist[i][j] = d2
    if d2 <= 10 ** 2:
      g[i].append(j)
      g[j].append(i)

par = [None for _ in range(n)]
for src in range(n):
  if not par[src] is None:
    continue
  par[src] = src
  dq = deque()
  dq.append(src)
  while len(dq) > 0:
    cur = dq.popleft()
    for nxt in g[cur]:
      if not par[nxt] is None:
        continue
      par[nxt] = src
      dq.append(nxt)

ans = 0
for i in range(n - 1):
  for j in range(i + 1, n):
    if par[i] == par[j]:
      ans = max(ans, dist[i][j])

ans = math.sqrt(ans) + 2
print(ans)
0