結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 37 ms
52,992 KB
testcase_08 AC 46 ms
62,592 KB
testcase_09 AC 48 ms
62,592 KB
testcase_10 AC 50 ms
61,648 KB
testcase_11 AC 523 ms
120,936 KB
testcase_12 AC 607 ms
127,932 KB
testcase_13 AC 636 ms
129,344 KB
testcase_14 AC 551 ms
126,632 KB
testcase_15 AC 544 ms
126,712 KB
testcase_16 AC 528 ms
126,448 KB
testcase_17 AC 652 ms
131,088 KB
testcase_18 AC 643 ms
130,052 KB
testcase_19 AC 625 ms
130,316 KB
testcase_20 AC 142 ms
82,944 KB
testcase_21 AC 608 ms
123,904 KB
testcase_22 AC 410 ms
106,396 KB
testcase_23 AC 329 ms
101,620 KB
testcase_24 AC 528 ms
118,564 KB
testcase_25 AC 424 ms
111,792 KB
testcase_26 AC 554 ms
130,216 KB
testcase_27 AC 123 ms
82,604 KB
testcase_28 AC 275 ms
95,540 KB
testcase_29 AC 522 ms
117,900 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