結果

問題 No.2179 Planet Traveler
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-26 18:10:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 646 ms / 3,000 ms
コード長 1,931 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 131,084 KB
最終ジャッジ日時 2024-05-07 20:29:16
合計ジャッジ時間 10,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,088 KB
testcase_01 AC 37 ms
53,340 KB
testcase_02 AC 38 ms
53,340 KB
testcase_03 AC 37 ms
54,360 KB
testcase_04 AC 36 ms
54,564 KB
testcase_05 AC 36 ms
53,764 KB
testcase_06 AC 36 ms
54,160 KB
testcase_07 AC 38 ms
53,904 KB
testcase_08 AC 46 ms
62,988 KB
testcase_09 AC 46 ms
63,260 KB
testcase_10 AC 48 ms
62,800 KB
testcase_11 AC 497 ms
120,728 KB
testcase_12 AC 595 ms
127,976 KB
testcase_13 AC 623 ms
129,336 KB
testcase_14 AC 510 ms
126,700 KB
testcase_15 AC 522 ms
126,692 KB
testcase_16 AC 532 ms
126,672 KB
testcase_17 AC 639 ms
131,084 KB
testcase_18 AC 633 ms
130,088 KB
testcase_19 AC 646 ms
130,380 KB
testcase_20 AC 144 ms
82,808 KB
testcase_21 AC 613 ms
123,912 KB
testcase_22 AC 402 ms
106,532 KB
testcase_23 AC 322 ms
101,872 KB
testcase_24 AC 515 ms
118,572 KB
testcase_25 AC 430 ms
112,176 KB
testcase_26 AC 564 ms
130,216 KB
testcase_27 AC 129 ms
82,968 KB
testcase_28 AC 276 ms
95,800 KB
testcase_29 AC 519 ms
118,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #







class unionfind:
    def __init__(self,uni_num):
        self.uni_num=uni_num
        self.union_root = [-1 for i in range(self.uni_num + 1)]
        self.union_depth = [0] * (self.uni_num + 1)
        self.e_num=[0]*(self.uni_num+1)

    def find(self,x):  # 親は誰?
        if self.union_root[x] < 0:
            return x
        else:
            self.union_root[x] = self.find(self.union_root[x])
            return self.union_root[x]

    def unite(self,x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            self.e_num[x]+=1
            return
        if self.union_depth[x] < self.union_depth[y]:
            x, y = y, x
        if self.union_depth[x] == self.union_depth[y]:
            self.union_depth[x] += 1
        self.union_root[x] += self.union_root[y]
        self.union_root[y] = x
        self.e_num[x]+=self.e_num[y]+1


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

    def same(self,x,y):
        return self.find(x)==self.find(y)
    def edge(self,x):
        return self.e_num[self.find(x)]





n=int(input())
x=[0]
y=[0]
t=[0]
for i in range(n):
    a,b,c=map(int,input().split())
    x.append(a)
    y.append(b)
    t.append(c)
def cost(i,j):
    if t[i]==t[j]:
        return (x[i]-x[j])**2+(y[i]-y[j])**2
    else:
        ri2 = x[i] ** 2 + y[i] ** 2
        rj2 = x[j] ** 2 + y[j] ** 2
        def f(s):
            if s<0:return 0
            if ri2+rj2-s<0:return 1
            return (ri2+rj2-s)**2<=4*ri2*rj2
        ng=int(abs(ri2**0.5-rj2**0.5)**2)-10
        ok=ng+20
        while ok-ng>1:
            mid=(ok+ng)//2
            if f(mid):ok=mid
            else:ng=mid
        return ok

e=[]
for i in range(1,n+1):
    for j in range(i+1,n+1):
        c=cost(i,j)
        e.append((i,j,c))
e.sort(key=lambda x:x[2])
uf=unionfind(n+4)
for i,j,c in e:
    uf.unite(i,j)
    if uf.same(1,n):
        print(c)
        exit()


0