結果

問題 No.168 ものさし
ユーザー rlangevinrlangevin
提出日時 2023-07-04 12:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 1,348 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 77,536 KB
最終ジャッジ日時 2024-07-18 08:26:29
合計ジャッジ時間 7,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
77,196 KB
testcase_01 AC 39 ms
52,708 KB
testcase_02 AC 38 ms
53,568 KB
testcase_03 AC 38 ms
53,696 KB
testcase_04 AC 38 ms
53,540 KB
testcase_05 AC 39 ms
52,680 KB
testcase_06 AC 46 ms
62,060 KB
testcase_07 AC 37 ms
53,200 KB
testcase_08 AC 36 ms
53,060 KB
testcase_09 AC 87 ms
76,144 KB
testcase_10 AC 108 ms
76,740 KB
testcase_11 AC 245 ms
76,496 KB
testcase_12 AC 532 ms
76,968 KB
testcase_13 AC 706 ms
76,696 KB
testcase_14 AC 712 ms
76,900 KB
testcase_15 AC 37 ms
54,788 KB
testcase_16 AC 88 ms
76,048 KB
testcase_17 AC 105 ms
76,648 KB
testcase_18 AC 131 ms
76,992 KB
testcase_19 AC 676 ms
77,232 KB
testcase_20 AC 718 ms
76,736 KB
testcase_21 AC 695 ms
77,228 KB
testcase_22 AC 716 ms
77,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    

N = int(input())
X, Y = [0] * N, [0] * N
for i in range(N):
    X[i], Y[i] = map(int, input().split())


yes = 10 ** 10
no = -1

def check(m):
    U = UnionFind(N)
    for i in range(N):
        for j in range(i + 1, N):
            if (X[i] - X[j]) ** 2 + (Y[i] - Y[j]) ** 2 <= m ** 2:
                U.union(i, j)
    return U.is_same(0, N - 1)

while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid

print((yes + 9)//10*10)

0