結果

問題 No.94 圏外です。(EASY)
ユーザー momotaros300momotaros300
提出日時 2019-09-07 16:50:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,169 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,168 KB
最終ジャッジ日時 2024-06-26 21:56:30
合計ジャッジ時間 3,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 64 ms
67,968 KB
testcase_05 AC 71 ms
71,808 KB
testcase_06 AC 83 ms
76,032 KB
testcase_07 AC 96 ms
76,452 KB
testcase_08 AC 114 ms
76,928 KB
testcase_09 AC 129 ms
76,800 KB
testcase_10 AC 128 ms
76,672 KB
testcase_11 AC 131 ms
77,168 KB
testcase_12 AC 127 ms
76,672 KB
testcase_13 AC 130 ms
76,544 KB
testcase_14 AC 131 ms
76,800 KB
testcase_15 AC 131 ms
76,928 KB
testcase_16 AC 128 ms
76,984 KB
testcase_17 AC 132 ms
77,056 KB
testcase_18 AC 130 ms
77,056 KB
testcase_19 AC 113 ms
76,800 KB
testcase_20 AC 40 ms
53,248 KB
testcase_21 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [list(map(int, input().split())) for i in range(n)]
ans=0
if n==0:
    print(1)
    exit()

class UnionFind:
    __slots__ = ['id']

    def __init__(self, n):
        self.id = [-1] * n

    def root(self, x):
        if self.id[x] < 0:
            return x
        else:
            self.id[x] = self.root(self.id[x])
            return self.id[x]

    def find(self, x, y):
        return self.root(x) == self.root(y)

    def union(self, x, y):
        s1, s2 = self.root(x), self.root(y)
        if s1 != s2:
            if self.id[s1] <= self.id[s2]:
                self.id[s1] += self.id[s2]
                self.id[s2] = s1
            else:
                self.id[s2] += self.id[s1]
                self.id[s1] = s2
            return True
        return False

uf =UnionFind(n)
for i in range(n):
    for j in range(n):
        x1, y1 = xy[i]
        x2, y2 = xy[j]
        if (x1-x2)**2+(y1-y2)**2<=100:
            uf.union(i,j)


for i in range(n):
    for j in range(n):
        if uf.find(i,j):
            x1,y1=xy[i]
            x2,y2=xy[j]
            ans=max(ans,(x1-x2)**2+(y1-y2)**2)

print(ans**(0.5)+2)

                

0