結果

問題 No.2179 Planet Traveler
ユーザー katonyonkokatonyonko
提出日時 2023-01-06 22:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 3,000 ms
コード長 1,600 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 126,720 KB
最終ジャッジ日時 2024-05-07 22:21:25
合計ジャッジ時間 16,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,736 KB
testcase_01 AC 37 ms
52,532 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 37 ms
52,536 KB
testcase_07 AC 40 ms
59,264 KB
testcase_08 AC 47 ms
61,952 KB
testcase_09 AC 48 ms
62,720 KB
testcase_10 AC 46 ms
61,696 KB
testcase_11 AC 852 ms
121,856 KB
testcase_12 AC 997 ms
119,808 KB
testcase_13 AC 1,011 ms
119,808 KB
testcase_14 AC 892 ms
126,592 KB
testcase_15 AC 905 ms
126,592 KB
testcase_16 AC 874 ms
126,720 KB
testcase_17 AC 983 ms
118,784 KB
testcase_18 AC 1,017 ms
123,548 KB
testcase_19 AC 953 ms
118,656 KB
testcase_20 AC 154 ms
82,688 KB
testcase_21 AC 959 ms
118,528 KB
testcase_22 AC 593 ms
110,848 KB
testcase_23 AC 467 ms
92,568 KB
testcase_24 AC 812 ms
119,040 KB
testcase_25 AC 624 ms
111,744 KB
testcase_26 AC 839 ms
118,912 KB
testcase_27 AC 155 ms
82,816 KB
testcase_28 AC 393 ms
89,344 KB
testcase_29 AC 822 ms
118,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
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 size(self, x):
    return -self.parents[self.find(x)]
  def same(self, x, y):
    return self.find(x) == self.find(y)
  def members(self, x):
    root = self.find(x)
    return [i for i in range(self.n) if self.find(i) == root]
  def roots(self):
    return [i for i, x in enumerate(self.parents) if x < 0]
  def group_count(self):
    return len(self.roots())
  def all_group_members(self):
    return {r: self.members(r) for r in self.roots()}
  def __str__(self):
    return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

N=int(input())
P=[list(map(int,input().split())) for _ in range(N)]
d=[]
for i in range(N):
  Xi,Yi,Ti=P[i]
  x=Xi**2+Yi**2
  for j in range(i+1,N):
    Xj,Yj,Tj=P[j]
    y=Xj**2+Yj**2
    if Ti==Tj: d.append(((Xi-Xj)**2+(Yi-Yj)**2,i,j))
    else:
      l,r=-1,2*(x+y)
      while r-l>1:
        mid=(l+r)//2
        if mid*(mid-2*(x+y))<=4*x*y-x**2-y**2-2*x*y: r=mid
        else: l=mid
      d.append((r,i,j))
d.sort()
uf=UnionFind(N)
for i in range(len(d)):
  dis,s,t=d[i]
  uf.union(s,t)
  if uf.find(0)==uf.find(N-1):
    print(dis)
    break
0