結果

問題 No.94 圏外です。(EASY)
ユーザー maspymaspy
提出日時 2020-03-13 20:15:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 1,547 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-05-02 05:46:38
合計ジャッジ時間 4,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 45 ms
59,776 KB
testcase_05 AC 46 ms
61,568 KB
testcase_06 AC 61 ms
66,944 KB
testcase_07 AC 68 ms
76,032 KB
testcase_08 AC 84 ms
76,288 KB
testcase_09 AC 120 ms
77,056 KB
testcase_10 AC 109 ms
77,056 KB
testcase_11 AC 107 ms
76,800 KB
testcase_12 AC 113 ms
76,800 KB
testcase_13 AC 110 ms
76,928 KB
testcase_14 AC 112 ms
76,800 KB
testcase_15 AC 112 ms
76,800 KB
testcase_16 AC 124 ms
77,440 KB
testcase_17 AC 121 ms
76,800 KB
testcase_18 AC 115 ms
76,928 KB
testcase_19 AC 131 ms
76,416 KB
testcase_20 AC 38 ms
52,864 KB
testcase_21 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

# %%
N = int(readline())
m = map(int, read().split())
XY = tuple(zip(m, m))


# %%
def gen_edges():
    for i, j in itertools.combinations(range(N), 2):
        x1, y1 = XY[i]
        x2, y2 = XY[j]
        dx = x1 - x2
        dy = y1 - y2
        if dx * dx + dy * dy <= 100:
            yield(i, j)


# %%
class UnionFind:
    def __init__(self, N):
        self.root = list(range(N))
        self.size = [1] * (N)

    def find_root(self, x):
        root = self.root
        while root[x] != x:
            root[x] = root[root[x]]
            x = root[x]
        return x

    def merge(self, x, y):
        x = self.find_root(x)
        y = self.find_root(y)
        if x == y:
            return False
        sx, sy = self.size[x], self.size[y]
        if sx < sy:
            self.root[x] = y
            self.size[y] += sx
        else:
            self.root[y] = x
            self.size[x] += sy
        return True


# %%
uf = UnionFind(N)
for i, j in gen_edges():
    uf.merge(i, j)


# %%
root = [uf.find_root(i) for i in range(N)]


def gen_dist():
    for i, j in itertools.combinations(range(N), 2):
        if root[i] == root[j]:
            x1, y1 = XY[i]
            x2, y2 = XY[j]
            dx = x1 - x2
            dy = y1 - y2
            yield (dx * dx + dy * dy) ** .5


# %%
answer = max(gen_dist(), default=0) + 2
if N == 0:
    answer = 1
print(answer)
0