結果

問題 No.2179 Planet Traveler
ユーザー ニックネームニックネーム
提出日時 2023-01-06 22:02:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 99,196 KB
最終ジャッジ日時 2024-05-07 21:36:33
合計ジャッジ時間 38,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = [-1]*n
    def f(self,x):
        if self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.p[y] = x
    def s(self,x,y): return self.f(x) == self.f(y)
n = int(input())
xyt = [tuple(map(int,input().split())) for _ in range(n)]
dij = []
for i,(xi,yi,ti) in enumerate(xyt):
    for j,(xj,yj,tj) in enumerate(xyt):
        if i==j: continue
        if ti==tj: d = (xi-xj)**2+(yi-yj)**2
        else: d = (xi**2+yi**2+xj**2+yj**2)-int((4*(xi**2+yi**2)*(xj**2+yj**2))**0.5)
        dij.append((d,i,j))
uf = UF(n)
s = 0
for d,i,j in sorted(dij):
    if not uf.s(i,j): uf.u(i,j); s = d
print(s)
0