結果

問題 No.94 圏外です。(EASY)
ユーザー noriocnorioc
提出日時 2024-08-28 22:14:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 1,593 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 76,816 KB
最終ジャッジ日時 2024-08-28 22:14:34
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 40 ms
53,092 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 39 ms
53,908 KB
testcase_04 AC 59 ms
66,912 KB
testcase_05 AC 69 ms
69,820 KB
testcase_06 AC 72 ms
72,368 KB
testcase_07 AC 112 ms
74,676 KB
testcase_08 AC 91 ms
76,568 KB
testcase_09 AC 101 ms
76,732 KB
testcase_10 AC 104 ms
76,584 KB
testcase_11 AC 104 ms
76,816 KB
testcase_12 AC 102 ms
76,196 KB
testcase_13 AC 103 ms
76,228 KB
testcase_14 AC 106 ms
76,632 KB
testcase_15 AC 109 ms
76,440 KB
testcase_16 AC 104 ms
76,616 KB
testcase_17 AC 105 ms
76,352 KB
testcase_18 AC 103 ms
76,128 KB
testcase_19 AC 95 ms
76,316 KB
testcase_20 AC 44 ms
54,272 KB
testcase_21 AC 39 ms
53,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt


class UnionFind:
    def __init__(self, n: int):
        self.data = [-1] * (n+1)
        self.nexts = [i for i in range(n+1)]

    def root(self, a: int) -> int:
        if self.data[a] < 0: return a
        self.data[a] = self.root(self.data[a])
        return self.data[a]

    def unite(self, a: int, b: int) -> bool:
        pa = self.root(a)
        pb = self.root(b)
        if pa == pb: return False
        if self.data[pa] > self.data[pb]:
            pa, pb = pb, pa
        self.data[pa] += self.data[pb] # pa を pb をつなげる
        self.data[pb] = pa
        self.nexts[pa], self.nexts[pb] = self.nexts[pb], self.nexts[pa]
        return True

    def issame(self, a: int, b: int) -> bool:
        return self.root(a) == self.root(b)

    def size(self, a: int) -> int:
        """a が属する集合のサイズ"""
        return -self.data[self.root(a)]

    def group(self, a: int):
        """a が属する集合"""
        yield a
        x = a
        while self.nexts[x] != a:
            x = self.nexts[x]
            yield x


def dist2(a, b):
    return (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2


N = int(input())
ps = []
for _ in range(N):
    X, Y = map(int, input().split())
    ps.append((X, Y))

uf = UnionFind(N)
for i in range(N):
    for j in range(i+1, N):
        d = dist2(ps[i], ps[j])
        if d <= 10**2:
            uf.unite(i, j)

ans = 1 if N == 0 else 2
for i in range(N):
    for j in range(i+1, N):
        if uf.issame(i, j):
            d = sqrt(dist2(ps[i], ps[j]))
            ans = max(ans, d + 2)

print(ans)
0