結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 43 ms
61,568 KB
testcase_08 AC 77 ms
76,160 KB
testcase_09 AC 77 ms
76,564 KB
testcase_10 AC 66 ms
72,320 KB
testcase_11 AC 424 ms
180,448 KB
testcase_12 AC 642 ms
196,480 KB
testcase_13 AC 415 ms
131,840 KB
testcase_14 AC 237 ms
104,576 KB
testcase_15 AC 236 ms
103,556 KB
testcase_16 AC 221 ms
103,552 KB
testcase_17 AC 421 ms
137,344 KB
testcase_18 AC 419 ms
142,208 KB
testcase_19 AC 462 ms
140,032 KB
testcase_20 AC 135 ms
78,304 KB
testcase_21 AC 404 ms
134,656 KB
testcase_22 AC 297 ms
110,208 KB
testcase_23 AC 263 ms
101,828 KB
testcase_24 AC 369 ms
122,240 KB
testcase_25 AC 311 ms
108,928 KB
testcase_26 AC 416 ms
127,616 KB
testcase_27 AC 141 ms
78,080 KB
testcase_28 AC 239 ms
92,288 KB
testcase_29 AC 401 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