結果

問題 No.94 圏外です。(EASY)
ユーザー ytftytft
提出日時 2022-11-10 14:55:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 1,077 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 77,400 KB
最終ジャッジ日時 2024-07-23 17:12:32
合計ジャッジ時間 3,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 40 ms
52,604 KB
testcase_04 AC 48 ms
60,544 KB
testcase_05 AC 49 ms
61,312 KB
testcase_06 AC 53 ms
63,488 KB
testcase_07 AC 64 ms
67,840 KB
testcase_08 AC 81 ms
75,520 KB
testcase_09 AC 96 ms
77,176 KB
testcase_10 AC 102 ms
77,236 KB
testcase_11 AC 102 ms
77,184 KB
testcase_12 AC 99 ms
77,300 KB
testcase_13 AC 100 ms
77,004 KB
testcase_14 AC 103 ms
76,928 KB
testcase_15 AC 100 ms
77,312 KB
testcase_16 AC 100 ms
77,400 KB
testcase_17 AC 105 ms
77,184 KB
testcase_18 AC 101 ms
77,056 KB
testcase_19 AC 93 ms
77,072 KB
testcase_20 AC 41 ms
53,248 KB
testcase_21 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math
input=lambda:sys.stdin.readline().rstrip()
class unionFind:
    def __init__(self,N):
        self.N=N
        self.parent=[-1 for i in range(N)]
        self.size=[1 for i in range(N)]
    def find(self,x):
        path=[x]
        while self.parent[path[-1]]!=-1:
            path.append(self.parent[path[-1]])
        for i in path[:-1]:
            self.parent[i]=path[-1]
        return path[-1]
    def unite(self,x,y):
        roots=sorted([self.find(x),self.find(y)],key=lambda _:self.parent[_])
        if roots[0]!=roots[1]:
            self.parent[roots[0]]=roots[1]
            self.size[roots[1]]+=self.size[roots[0]]
def d(A,i,j):
	return (A[i][0]-A[j][0])**2+(A[i][1]-A[j][1])**2
N=int(input())
if N==0:
	print(1)
	sys.exit()
A=[list(map(int,input().split())) for i in range(N)]
u=unionFind(N)
mem={}
ans=0
for i in range(N):
	for j in range(i):
		if d(A,i,j)<=100:
			u.unite(i,j)
for i in range(N):
	if not u.find(i) in mem:
		mem[u.find(i)]=[]
	for j in mem[u.find(i)]:
		ans=max(d(A,i,j),ans)
	mem[u.find(i)].append(i)
print(pow(ans,0.5)+2)
	
0