結果

問題 No.2179 Planet Traveler
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-20 11:33:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,342 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 87,200 KB
実行使用メモリ 85,860 KB
最終ジャッジ日時 2023-09-05 05:38:40
合計ジャッジ時間 8,782 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
72,836 KB
testcase_01 AC 115 ms
72,968 KB
testcase_02 AC 121 ms
72,712 KB
testcase_03 AC 116 ms
72,676 KB
testcase_04 AC 113 ms
72,496 KB
testcase_05 AC 113 ms
72,732 KB
testcase_06 AC 115 ms
72,572 KB
testcase_07 WA -
testcase_08 AC 224 ms
80,480 KB
testcase_09 AC 218 ms
80,208 KB
testcase_10 AC 204 ms
80,136 KB
testcase_11 WA -
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 *
from itertools import *
from functools import *
from heapq import *
import math,sys
input = sys.stdin.readline
N = int(input())
dist = [[0]*N for _ in range(N)]
XYT = [tuple(map(int,input().split())) for _ in range(N)]
def floor_sqrt(n):
    
    y = 10**20
    
    def is_smaller(x):
        if x**2 <= n:
            return True
        return False
    
    x = 0
    while y-x>1:
        mid = (y+x)//2
        if is_smaller(mid):
            x = mid
        else:
            y = mid
    return x
for i in range(N-1):
    xi,yi,ti = XYT[i]
    for j in range(i+1,N):
        xj,yj,tj = XYT[j]
        if ti==tj:
            td = (xi-xj)**2 + (yi-yj)**2
        else:

            
            td = xi**2+yi**2+xj**2+yj**2-2*floor_sqrt((xi**2+yi**2)*(xj**2+yj**2))
                    
            
        
        dist[i][j]=td
        dist[j][i]=td

class DSU:
    def __init__(self, n):
        self._n = n
        self.parent_or_size = [-1] * n

    def merge(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        x, y = self.leader(a), self.leader(b)
        if x == y: return x
        if -self.parent_or_size[x] < -self.parent_or_size[y]: x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return x

    def same(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        return self.leader(a) == self.leader(b)

    def leader(self, a):
        assert 0 <= a < self._n
        if self.parent_or_size[a] < 0: return a
        self.parent_or_size[a] = self.leader(self.parent_or_size[a])
        return self.parent_or_size[a]

    def size(self, a):
        assert 0 <= a < self._n
        return -self.parent_or_size[self.leader(a)]

    def groups(self):
        leader_buf = [self.leader(i) for i in range(self._n)]
        result = [[] for _ in range(self._n)]
        for i in range(self._n): result[leader_buf[i]].append(i)
        return [r for r in result if r != []]


def is_ok(s):
    
    D = DSU(N)
    
    for i in range(N-1):
        for j in range(i+1,N):
            if dist[i][j]<=s:
                D.merge(i,j)
    return D.same(0,N-1)
    
x = -1
y = 10**18
while y-x>1:
    mid = (y+x)//2
    
    if is_ok(mid):
        y = mid
    else:
        x = mid
print(y)
0