結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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(l, r)

print(r)
0