結果

問題 No.2179 Planet Traveler
ユーザー HydruHydru
提出日時 2023-01-06 23:34:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,121 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,852 KB
最終ジャッジ日時 2024-05-07 23:32:26
合計ジャッジ時間 8,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
54,016 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
54,400 KB
testcase_03 AC 49 ms
53,760 KB
testcase_04 AC 48 ms
53,760 KB
testcase_05 AC 45 ms
54,144 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 45 ms
54,272 KB
testcase_08 AC 58 ms
63,744 KB
testcase_09 AC 61 ms
65,536 KB
testcase_10 AC 56 ms
63,360 KB
testcase_11 AC 253 ms
113,280 KB
testcase_12 AC 330 ms
121,596 KB
testcase_13 WA -
testcase_14 AC 345 ms
156,848 KB
testcase_15 AC 365 ms
156,480 KB
testcase_16 AC 365 ms
156,620 KB
testcase_17 AC 464 ms
149,324 KB
testcase_18 AC 485 ms
149,120 KB
testcase_19 AC 445 ms
149,224 KB
testcase_20 AC 114 ms
85,120 KB
testcase_21 AC 453 ms
145,792 KB
testcase_22 AC 286 ms
118,176 KB
testcase_23 AC 263 ms
107,744 KB
testcase_24 AC 387 ms
137,944 KB
testcase_25 AC 297 ms
125,184 KB
testcase_26 AC 391 ms
141,184 KB
testcase_27 AC 119 ms
84,864 KB
testcase_28 AC 225 ms
96,700 KB
testcase_29 AC 375 ms
134,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from collections import deque

n=int(input())
Z=[list(map(int,input().split())) for _ in range(n)]

G=[[0 for _ in range(n)] for _ in range(n)]
dist=[0]
dist_set=set([0])
for i in range(n):
    for j in range(n):
        if i==j:
            continue
        if Z[i][2]==Z[j][2]:
            d=(Z[i][0]-Z[j][0])**2+(Z[i][1]-Z[j][1])**2
        else:
            d=abs(sqrt(Z[i][0]**2+Z[i][1]**2)-sqrt(Z[j][0]**2+Z[j][1]**2))
            d**=2
            
            d=-int(-d//1)
        G[i][j]=d
        G[j][i]=d
        if d not in dist_set:
            dist.append(d)
            dist_set.add(d)

def dfs(G,d):
    not_visit=set([i for i in range(1,n)])
    Q=deque()
    Q.append(0)
    while(Q):
        v=Q.pop()
        visit=set()
        for i in not_visit:
            if G[v][i]<=d:
                visit.add(i)
                Q.append(i)
                if i==n-1:
                    return True
        not_visit-=visit
    return False

dist.sort()
l=-1
r=len(dist)-1
while(r-l>1):
    mid=(r+l)//2
    if(dfs(G,dist[mid])):
        r=mid
    else:
        l=mid


print(dist[r])
0