結果

問題 No.2179 Planet Traveler
ユーザー とりゐとりゐ
提出日時 2023-01-06 22:16:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,797 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-05-07 21:51:34
合計ジャッジ時間 5,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
62,392 KB
testcase_01 AC 39 ms
54,784 KB
testcase_02 AC 39 ms
54,656 KB
testcase_03 AC 38 ms
54,272 KB
testcase_04 AC 39 ms
54,272 KB
testcase_05 AC 45 ms
54,656 KB
testcase_06 AC 40 ms
54,400 KB
testcase_07 AC 57 ms
72,832 KB
testcase_08 AC 104 ms
76,544 KB
testcase_09 AC 102 ms
76,544 KB
testcase_10 AC 101 ms
76,656 KB
testcase_11 AC 355 ms
82,304 KB
testcase_12 TLE -
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 collections import defaultdict

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):
    group_members=defaultdict(list)
    for member in range(self.n):
      group_members[self.find(member)].append(member)
    return group_members



n=int(input())
xyt=[]
for i in range(n):
  x,y,t=map(int,input().split())
  xyt.append((x,y,t))

dist=[[10**18]*n for i in range(n)]
def calc(a,b):
  a,b=min(a,b),max(a,b)
  #print(a,b)
  ng,ok=-1,10**20
  while abs(ng-ok)>1:
    mid=(ng+ok)//2
    if a+b-mid<0 or (a+b-mid)**2<=4*a*b:
      ok=mid
    else:
      ng=mid
  return ok


  
for i in range(n):
  for j in range(i+1,n):
    xi,yi,ti=xyt[i]
    xj,yj,tj=xyt[j]
    if ti!=tj:
      dist[i][j]=calc(xi*xi+yi*yi,xj*xj+yj*yj)
    else:
      dx=xi-xj
      dy=yi-yj
      dist[i][j]=dx*dx+dy*dy

ng,ok=-1,10**18
while abs(ng-ok)>1:
  mid=(ng+ok)//2
  uf=UnionFind(n)
  for i in range(n):
    for j in range(i+1,n):
      if dist[i][j]<=mid:
        uf.union(i,j)
  if uf.same(0,n-1):
    ok=mid
  else:
    ng=mid
print(ok)
0