結果

問題 No.168 ものさし
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,367 ms / 2,000 ms
コード長 1,830 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 137,904 KB
最終ジャッジ日時 2024-12-15 23:05:33
合計ジャッジ時間 8,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
91,648 KB
testcase_01 AC 43 ms
52,736 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 42 ms
52,736 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 42 ms
53,248 KB
testcase_07 AC 40 ms
53,120 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 52 ms
60,800 KB
testcase_10 AC 58 ms
63,488 KB
testcase_11 AC 98 ms
77,184 KB
testcase_12 AC 191 ms
103,936 KB
testcase_13 AC 235 ms
116,300 KB
testcase_14 AC 211 ms
112,896 KB
testcase_15 AC 43 ms
52,864 KB
testcase_16 AC 52 ms
61,312 KB
testcase_17 AC 60 ms
64,512 KB
testcase_18 AC 88 ms
71,936 KB
testcase_19 AC 1,290 ms
136,860 KB
testcase_20 AC 1,367 ms
137,524 KB
testcase_21 AC 1,357 ms
137,904 KB
testcase_22 AC 1,347 ms
137,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        self.group = n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return
        self.group -= 1
        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return self.group

    def all_group_members(self):
        dic = {r:[] for r in self.roots()}
        for i in range(self.n):
            dic[self.find(i)].append(i)
        return dic

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

n = int(input())
lst = []
xy = [list(map(int, input().split())) for _ in range(n)]
for i in range(n):
    for j in range(i + 1, n):
        dx = xy[j][0] - xy[i][0]
        dy = xy[j][1] - xy[i][1]
        d2 = dx ** 2 + dy ** 2
        lst.append(d2 * (n * n) + i * n + j)

lst.sort()
UF = UnionFind(n)
for dij in lst:
    d = dij // (n * n)
    dij -= d * n * n
    i = dij // n
    j = dij - i * n
    UF.union(i, j)
    if UF.same(0, n - 1):
        break

x = int(d ** 0.5)
x = (x + 9) // 10 * 10
while x * x > d:
    x -= 10
while x * x < d:
    x += 10

print(x)
0