結果

問題 No.168 ものさし
ユーザー H3PO4H3PO4
提出日時 2020-05-10 09:18:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,823 ms / 2,000 ms
コード長 1,580 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 243,912 KB
最終ジャッジ日時 2024-07-07 04:41:20
合計ジャッジ時間 10,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
106,128 KB
testcase_01 AC 35 ms
54,592 KB
testcase_02 AC 34 ms
54,460 KB
testcase_03 AC 35 ms
54,420 KB
testcase_04 AC 33 ms
55,496 KB
testcase_05 AC 36 ms
54,432 KB
testcase_06 AC 36 ms
54,208 KB
testcase_07 AC 34 ms
54,724 KB
testcase_08 AC 34 ms
55,360 KB
testcase_09 AC 53 ms
71,488 KB
testcase_10 AC 70 ms
77,908 KB
testcase_11 AC 148 ms
82,924 KB
testcase_12 AC 319 ms
97,228 KB
testcase_13 AC 442 ms
107,620 KB
testcase_14 AC 435 ms
107,164 KB
testcase_15 AC 35 ms
54,876 KB
testcase_16 AC 51 ms
69,816 KB
testcase_17 AC 67 ms
78,016 KB
testcase_18 AC 125 ms
83,616 KB
testcase_19 AC 1,756 ms
239,332 KB
testcase_20 AC 1,803 ms
243,748 KB
testcase_21 AC 1,809 ms
243,784 KB
testcase_22 AC 1,823 ms
243,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
# from math import isqrt
from collections import defaultdict


def isqrt(n):
    x = n
    y = (x + 1) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x


ceil = lambda a, b: (a + b - 1) // b
ceil_sq = lambda n: 1 + isqrt(n - 1)


class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parent = [i for i in range(n)]
        self.height = [1] * n
        self.size = [1] * n

    def find(self, x):
        if self.parent[x] == x:
            return x
        else:
            self.parent[x] = self.find(self.parent[x])
            return self.parent[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.height[x] < self.height[y]:
                self.parent[x] = y
                self.size[y] += self.size[x]
            else:
                self.parent[y] = x
                self.size[x] += self.size[y]
                if self.height[x] == self.height[y]:
                    self.height[x] += 1

    def issame(self, x, y):
        return self.find(x) == self.find(y)


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

d = defaultdict(list)
for p1, p2 in itertools.combinations(range(N), 2):
    dist = ceil_sq((P[p1][0] - P[p2][0]) ** 2 + (P[p1][1] - P[p2][1]) ** 2)
    d[ceil(dist, 10) * 10].append((p1, p2))

lst = sorted(list(d.items()))
lst.sort()

uf = UnionFind(N)
for dist, points in lst:
    for p1, p2 in points:
        uf.unite(p1, p2)
    if uf.issame(0, N - 1):
        print(dist)
        break
0