結果

問題 No.2179 Planet Traveler
ユーザー titiatitia
提出日時 2023-01-10 02:11:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,400 KB
最終ジャッジ日時 2024-06-01 02:23:24
合計ジャッジ時間 4,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
53,080 KB
testcase_02 WA -
testcase_03 AC 38 ms
53,580 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
52,888 KB
testcase_07 AC 45 ms
60,188 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 216 ms
71,612 KB
testcase_12 AC 97 ms
70,892 KB
testcase_13 AC 87 ms
70,216 KB
testcase_14 AC 194 ms
72,452 KB
testcase_15 AC 221 ms
71,356 KB
testcase_16 AC 205 ms
71,760 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
P=[list(map(int,input().split())) for i in range(N)]

OK=3200000000
NG=-1

while OK>NG+1:
    mid=(OK+NG)//2

    CAN=[0]*N
    CAN[0]=1

    Q=[0]
    while Q:
        x=Q.pop()

        x0,y0,t0=P[x]

        for i in range(N):
            if CAN[i]==1:
                continue

            x1,y1,t1=P[i]

            if t0==t1:
                dis=(x0-x1)**2+(y0-y1)**2

                if dis<=mid:
                    CAN[i]=1
                    Q.append(i)
                    
            else:
                a=(x1*x1+y1*y1)
                b=(x0*x0+y0*y0)

                if (a+b-mid)**2<=4*a*b:
                    CAN[i]=1
                    Q.append(i)

    if CAN[N-1]==1:
        OK=mid
    else:
        NG=mid

print(OK)
0