結果

問題 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
コンパイル時間 259 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-11-25 11:49:47
合計ジャッジ時間 26,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,065 ms
24,608 KB
testcase_01 AC 30 ms
42,112 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 31 ms
50,944 KB
testcase_04 AC 30 ms
17,696 KB
testcase_05 AC 31 ms
50,688 KB
testcase_06 AC 30 ms
17,440 KB
testcase_07 AC 30 ms
51,968 KB
testcase_08 AC 31 ms
17,696 KB
testcase_09 AC 72 ms
53,120 KB
testcase_10 AC 203 ms
18,468 KB
testcase_11 AC 1,463 ms
59,264 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 51 ms
10,880 KB
testcase_17 AC 94 ms
11,136 KB
testcase_18 AC 243 ms
12,288 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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