結果

問題 No.94 圏外です。(EASY)
ユーザー titiatitia
提出日時 2022-04-19 05:26:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 771 ms / 5,000 ms
コード長 967 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-09 22:57:07
合計ジャッジ時間 7,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 45 ms
11,008 KB
testcase_06 AC 75 ms
11,008 KB
testcase_07 AC 138 ms
10,880 KB
testcase_08 AC 257 ms
11,008 KB
testcase_09 AC 491 ms
11,008 KB
testcase_10 AC 502 ms
10,752 KB
testcase_11 AC 470 ms
10,752 KB
testcase_12 AC 481 ms
10,752 KB
testcase_13 AC 478 ms
11,008 KB
testcase_14 AC 481 ms
10,880 KB
testcase_15 AC 512 ms
10,880 KB
testcase_16 AC 495 ms
11,008 KB
testcase_17 AC 503 ms
10,880 KB
testcase_18 AC 507 ms
10,880 KB
testcase_19 AC 771 ms
11,008 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 26 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

XY=[tuple(map(int,input().split())) for i in range(N)]

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(N):
    x,y=XY[i]
    for j in range(i+1,N):
        z,w=XY[j]

        if (x-z)**2+(y-w)**2<=100:
            Union(i,j)

MAX=0

for i in range(N):
    x,y=XY[i]
    for j in range(i+1,N):
        z,w=XY[j]

        if find(i)==find(j):
            MAX=max(MAX,(x-z)**2+(y-w)**2)

if N!=0:
    print(MAX**(1/2)+2)
else:
    print(1)
0