結果

問題 No.2179 Planet Traveler
ユーザー H20H20
提出日時 2023-01-06 23:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,954 ms / 3,000 ms
コード長 1,695 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,616 KB
実行使用メモリ 160,036 KB
最終ジャッジ日時 2024-05-07 22:53:07
合計ジャッジ時間 40,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
81,792 KB
testcase_01 AC 134 ms
81,716 KB
testcase_02 AC 130 ms
81,792 KB
testcase_03 AC 131 ms
81,920 KB
testcase_04 AC 130 ms
81,664 KB
testcase_05 AC 129 ms
81,408 KB
testcase_06 AC 129 ms
81,864 KB
testcase_07 AC 137 ms
81,576 KB
testcase_08 AC 295 ms
83,644 KB
testcase_09 AC 247 ms
82,400 KB
testcase_10 AC 236 ms
82,816 KB
testcase_11 AC 1,366 ms
139,992 KB
testcase_12 AC 1,455 ms
141,632 KB
testcase_13 AC 2,104 ms
147,880 KB
testcase_14 AC 1,801 ms
146,344 KB
testcase_15 AC 1,868 ms
147,480 KB
testcase_16 AC 1,832 ms
146,140 KB
testcase_17 AC 2,954 ms
159,924 KB
testcase_18 AC 2,798 ms
158,292 KB
testcase_19 AC 2,549 ms
160,036 KB
testcase_20 AC 927 ms
95,688 KB
testcase_21 AC 2,628 ms
153,536 KB
testcase_22 AC 1,956 ms
129,900 KB
testcase_23 AC 1,634 ms
125,520 KB
testcase_24 AC 2,321 ms
144,312 KB
testcase_25 AC 1,859 ms
131,472 KB
testcase_26 AC 2,214 ms
148,660 KB
testcase_27 AC 1,006 ms
98,312 KB
testcase_28 AC 1,593 ms
117,644 KB
testcase_29 AC 2,552 ms
144,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

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)


def is_ok(s):
    uf = UnionFind(N)
    hs = Decimal(s)**Decimal('0.5')
    for i,xyti in enumerate(XYT):
        for j,xytj in enumerate(XYT[i+1:],start=i+1):
            if not uf.same(i,j):
                if xyti[2]==xytj[2]:
                    xi,yi,ti = xyti
                    xj,yj,tj = xytj
                    if (xi-xj)**2+(yi-yj)**2<=s:
                        uf.union(i,j)
                else:
                    if XY[i][j]<=hs:
                        uf.union(i,j)
        if uf.same(0,N-1):
            return True
    return uf.same(0,N-1)

def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok

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]=abs(D[i]-D[j])

print(meguru_bisect(-1,3200000001))
0