結果

問題 No.2179 Planet Traveler
ユーザー katonyonkokatonyonko
提出日時 2023-01-06 22:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,290 ms / 3,000 ms
コード長 1,600 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 126,684 KB
最終ジャッジ日時 2024-11-30 19:06:25
合計ジャッジ時間 19,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,508 KB
testcase_01 AC 41 ms
53,200 KB
testcase_02 AC 41 ms
53,192 KB
testcase_03 AC 41 ms
54,544 KB
testcase_04 AC 40 ms
53,336 KB
testcase_05 AC 40 ms
52,968 KB
testcase_06 AC 41 ms
52,668 KB
testcase_07 AC 45 ms
59,588 KB
testcase_08 AC 52 ms
63,124 KB
testcase_09 AC 53 ms
62,640 KB
testcase_10 AC 51 ms
61,940 KB
testcase_11 AC 1,087 ms
121,608 KB
testcase_12 AC 1,210 ms
120,136 KB
testcase_13 AC 1,262 ms
119,820 KB
testcase_14 AC 1,122 ms
126,684 KB
testcase_15 AC 1,138 ms
126,496 KB
testcase_16 AC 1,126 ms
126,432 KB
testcase_17 AC 1,226 ms
119,008 KB
testcase_18 AC 1,248 ms
123,476 KB
testcase_19 AC 1,198 ms
118,592 KB
testcase_20 AC 187 ms
82,672 KB
testcase_21 AC 1,290 ms
118,568 KB
testcase_22 AC 724 ms
111,012 KB
testcase_23 AC 569 ms
92,184 KB
testcase_24 AC 1,013 ms
118,940 KB
testcase_25 AC 752 ms
112,044 KB
testcase_26 AC 1,072 ms
118,840 KB
testcase_27 AC 187 ms
82,844 KB
testcase_28 AC 467 ms
89,408 KB
testcase_29 AC 1,014 ms
118,812 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