結果

問題 No.2179 Planet Traveler
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-26 17:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 3,000 ms
コード長 879 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 196,480 KB
最終ジャッジ日時 2024-11-30 16:29:10
合計ジャッジ時間 8,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 45 ms
61,952 KB
testcase_08 AC 77 ms
76,156 KB
testcase_09 AC 77 ms
76,416 KB
testcase_10 AC 66 ms
72,832 KB
testcase_11 AC 456 ms
180,224 KB
testcase_12 AC 641 ms
196,480 KB
testcase_13 AC 424 ms
132,152 KB
testcase_14 AC 242 ms
104,448 KB
testcase_15 AC 237 ms
103,680 KB
testcase_16 AC 227 ms
103,552 KB
testcase_17 AC 434 ms
137,472 KB
testcase_18 AC 427 ms
142,208 KB
testcase_19 AC 476 ms
140,016 KB
testcase_20 AC 136 ms
78,376 KB
testcase_21 AC 412 ms
134,784 KB
testcase_22 AC 310 ms
110,196 KB
testcase_23 AC 275 ms
101,504 KB
testcase_24 AC 384 ms
122,488 KB
testcase_25 AC 313 ms
108,800 KB
testcase_26 AC 432 ms
127,724 KB
testcase_27 AC 144 ms
78,052 KB
testcase_28 AC 245 ms
92,160 KB
testcase_29 AC 417 ms
124,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



n=int(input())
x=[0]
y=[0]
t=[0]
for i in range(n):
    a,b,c=map(int,input().split())
    x.append(a)
    y.append(b)
    t.append(c)
def dist2(i,j,s):
    if t[i]==t[j]:
        return (x[i]-x[j])**2+(y[i]-y[j])**2<=s
    ri2=x[i]**2+y[i]**2
    rj2=x[j]**2+y[j]**2
    if ri2+rj2-s<0:return True
    return (ri2+rj2-s)**2<=4*ri2*rj2

def f(s):
    if s<0:return -1
    root=[[] for i in range(n+3)]
    for i in range(1,n+1):
        for j in range(i+1,n+1):
            if dist2(i,j,s):
                root[i].append(j)
                root[j].append(i)
    seen=[0]*(n+3)
    seen[1]=1
    data=[1]
    while data:
        now=data.pop()
        for to in root[now]:
            if seen[to]:continue
            seen[to]=1
            data.append(to)
    return seen[n]
ng=-1
ok=10**10
while ok-ng>1:
    mid=(ok+ng)//2
    if f(mid):ok=mid
    else:ng=mid
print(ok)



0