結果

問題 No.2179 Planet Traveler
ユーザー 👑 H20H20
提出日時 2023-01-06 23:21:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,358 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 86,756 KB
実行使用メモリ 94,004 KB
最終ジャッジ日時 2023-08-20 16:52:11
合計ジャッジ時間 9,139 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
88,992 KB
testcase_01 AC 236 ms
90,760 KB
testcase_02 AC 228 ms
88,896 KB
testcase_03 AC 231 ms
88,928 KB
testcase_04 AC 233 ms
88,560 KB
testcase_05 AC 233 ms
88,936 KB
testcase_06 AC 236 ms
88,936 KB
testcase_07 AC 264 ms
91,744 KB
testcase_08 AC 531 ms
93,972 KB
testcase_09 AC 502 ms
94,004 KB
testcase_10 AC 481 ms
93,660 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
import heapq
import math

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def same(self, x, y):
        return self.find(x) == self.find(y)



N = int(input())
XYT = [list(map(int, input().split())) for _ in range(N)]
D = []
for i in range(N):
    D.append(Decimal(XYT[i][0]**2+XYT[i][1]**2)**Decimal('0.5'))

XY = [[0]*N for _ in range(N)]
for i in range(N):
    for j in range(i+1,N):
        XY[i][j]=(D[i]-D[j])**Decimal('2')

H = []
for i,xyti in enumerate(XYT):
    for j,xytj in enumerate(XYT[i+1:],start=i+1):
        if xyti[2]==xytj[2]:
            xi,yi,ti = xyti
            xj,yj,tj = xytj
            heapq.heappush(H,((xi-xj)**2+(yi-yj)**2,i,j))
        else:
            heapq.heappush(H,(XY[i][j],i,j))
uf = UnionFind(N)
while not uf.same(0,N-1):
    ans,i,j = heapq.heappop(H)
    uf.union(i,j)
print(math.ceil(ans))

0