結果

問題 No.168 ものさし
ユーザー dice4084dice4084
提出日時 2023-01-03 20:23:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 1,246 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,836 KB
最終ジャッジ日時 2024-05-05 07:35:40
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
77,564 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 39 ms
52,992 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 36 ms
53,120 KB
testcase_05 AC 36 ms
52,992 KB
testcase_06 AC 48 ms
61,440 KB
testcase_07 AC 38 ms
52,452 KB
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 94 ms
76,416 KB
testcase_10 AC 108 ms
76,548 KB
testcase_11 AC 170 ms
77,604 KB
testcase_12 AC 283 ms
77,512 KB
testcase_13 AC 365 ms
77,880 KB
testcase_14 AC 321 ms
77,780 KB
testcase_15 AC 38 ms
53,504 KB
testcase_16 AC 96 ms
76,456 KB
testcase_17 AC 109 ms
76,588 KB
testcase_18 AC 124 ms
77,184 KB
testcase_19 AC 304 ms
78,836 KB
testcase_20 AC 313 ms
78,124 KB
testcase_21 AC 329 ms
78,108 KB
testcase_22 AC 313 ms
78,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import ceil

input = sys.stdin.readline


class UnionFind:
    def __init__(self, n):
        self.par = [-1] * n
        self.rank = [0] * n
        self.siz = [1] * n

    def root(self, x):
        if self.par[x] == -1:
            return x
        self.par[x] = self.root(self.par[x])
        return self.par[x]

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

    def unite(self, x, y):
        if self.is_same(x, y):
            return False

        rx = self.root(x)
        ry = self.root(y)
        if self.rank[rx] < self.rank[ry]:
            rx, ry = ry, rx
        elif self.rank[rx] == self.rank[ry]:
            self.rank[rx] += 1

        self.par[ry] = rx
        self.siz[rx] += self.siz[ry]
        return True


n = int(input())
points = [tuple(map(int, input().split())) for _ in range(n)]

l = 0
r = 2 * 10**9
for _ in range(35):
    mid = ceil((l + r) / 20) * 10
    uf = UnionFind(n)
    for i in range(n - 1):
        ix, iy = points[i]
        for j in range(i + 1, n):
            jx, jy = points[j]
            if (ix - jx) ** 2 + (iy - jy) ** 2 <= mid**2:
                uf.unite(i, j)

    if uf.is_same(0, n - 1):
        r = mid
    else:
        l = mid

print(r)
0