結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 34 ms
11,136 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2,076 ms
97,184 KB
testcase_14 AC 1,677 ms
98,992 KB
testcase_15 AC 1,657 ms
99,320 KB
testcase_16 AC 1,702 ms
97,916 KB
testcase_17 AC 2,056 ms
97,504 KB
testcase_18 AC 2,297 ms
96,832 KB
testcase_19 AC 2,199 ms
97,576 KB
testcase_20 AC 257 ms
20,864 KB
testcase_21 AC 1,965 ms
91,252 KB
testcase_22 AC 1,363 ms
61,856 KB
testcase_23 AC 1,101 ms
56,020 KB
testcase_24 AC 1,768 ms
80,868 KB
testcase_25 AC 1,366 ms
64,744 KB
testcase_26 AC 1,739 ms
86,932 KB
testcase_27 AC 250 ms
21,112 KB
testcase_28 AC 805 ms
46,240 KB
testcase_29 AC 1,791 ms
79,844 KB
権限があれば一括ダウンロードができます

ソースコード

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
    if uf.s(0,n-1): break
print(s)
0