結果

問題 No.168 ものさし
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 15:50:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,389 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 38,300 KB
最終ジャッジ日時 2024-05-04 04:40:54
合計ジャッジ時間 7,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 990 ms
24,988 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 66 ms
11,008 KB
testcase_10 AC 185 ms
11,520 KB
testcase_11 AC 1,370 ms
16,896 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n=n
        self.parent_size=[-1]*n
    def merge(self, a, b):
        x, y=self.leader(a), self.leader(b)
        if x == y: return 
        if abs(self.parent_size[x])<abs(self.parent_size[y]): x, y=y, x
        self.parent_size[x] += self.parent_size[y] 
        self.parent_size[y]=x
        return 
    def same(self, a, b):
        return self.leader(a) == self.leader(b)
    def leader(self, a):
        if self.parent_size[a]<0: return a
        self.parent_size[a]=self.leader(self.parent_size[a])
        return self.parent_size[a]
    def size(self, a):
        return abs(self.parent_size[self.leader(a)])
    def groups(self):
        result=[[] for _ in range(self.n)]
        for i in range(self.n):
            result[self.leader(i)].append(i)
        return [r for r in result if r != []]
def connect(d):
    uni=UnionFind(n)
    for i in range(n):
        for j in range(i+1,n):
            if g[i][j]<=d:
                uni.merge(i,j)
    return uni.same(0,n-1)
n=int(input())
p=[list(map(int,input().split())) for _ in range(n)]
g=[[0]*n for _ in range(n)]
for i in range(n):
    x,y=p[i]
    for j in range(i+1,n):
        X,Y=p[j]
        dx=x-X
        dy=y-Y
        g[i][j]=dx**2+dy**2
l=0
r=10**12
while r-l>1:
    mid=(r+l)//2
    if connect(mid**2*100):
        r=mid
    else:
        l=mid
print(r*10)
0