結果

問題 No.2602 Real Collider
ユーザー naut3naut3
提出日時 2024-01-12 22:25:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,283 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2024-09-27 22:55:17
合計ジャッジ時間 18,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,764 KB
testcase_01 AC 34 ms
52,968 KB
testcase_02 AC 36 ms
52,492 KB
testcase_03 AC 42 ms
54,488 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
54,132 KB
testcase_07 AC 35 ms
52,744 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 245 ms
76,276 KB
testcase_13 AC 153 ms
75,912 KB
testcase_14 AC 260 ms
76,488 KB
testcase_15 AC 186 ms
76,660 KB
testcase_16 WA -
testcase_17 AC 252 ms
76,484 KB
testcase_18 AC 195 ms
75,840 KB
testcase_19 AC 231 ms
76,632 KB
testcase_20 AC 282 ms
76,504 KB
testcase_21 AC 196 ms
76,360 KB
testcase_22 AC 218 ms
76,232 KB
testcase_23 AC 165 ms
76,384 KB
testcase_24 AC 207 ms
76,572 KB
testcase_25 AC 205 ms
76,356 KB
testcase_26 WA -
testcase_27 AC 235 ms
76,836 KB
testcase_28 WA -
testcase_29 AC 222 ms
76,668 KB
testcase_30 AC 221 ms
76,608 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 233 ms
76,688 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 249 ms
76,656 KB
testcase_40 WA -
testcase_41 AC 265 ms
76,484 KB
testcase_42 AC 228 ms
76,468 KB
testcase_43 AC 230 ms
76,380 KB
testcase_44 AC 266 ms
76,540 KB
testcase_45 AC 197 ms
76,380 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 191 ms
76,336 KB
testcase_55 AC 212 ms
76,416 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 226 ms
76,620 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 237 ms
76,664 KB
testcase_63 AC 261 ms
76,356 KB
testcase_64 AC 283 ms
76,380 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 230 ms
76,736 KB
testcase_75 WA -
testcase_76 WA -
testcase_77 AC 226 ms
76,360 KB
testcase_78 AC 264 ms
76,788 KB
testcase_79 WA -
testcase_80 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def minimum_bounding_circle(p1, p2, p3):
    def dist(q1, q2):
        x1, y1 = q1
        x2, y2 = q2
        return (x1 - x2) ** 2 + (y1 - y2) ** 2

    def add(q1, q2):
        x1, y1 = q1
        x2, y2 = q2
        return (x1 + x2, y1 + y2)

    def mul(a, q1):
        x1, y1 = q1
        return (a * x1, a * y1)

    A = dist(p2, p3)
    B = dist(p3, p1)
    C = dist(p1, p2)

    sa, sb, sc = sorted([A, B, C])

    if sa + sb <= sc + 1e-10:
        c = add(p2, p3) if A == sc else add(p1, p3) if B == sc else add(p1, p2)
        c = mul(1/2, c)
        r2 = sc / 4
    else:
        T = A * (B + C - A)
        U = B * (C + A - B)
        W = C * (A + B - C)

        c = mul(1 / (T + U + W), add(add(mul(T, p1), mul(U, p2)), mul(W, p3)))
        r2 = dist(c, p1)

    return c, r2


def main():
    Q = int(input())
    Xa, Ya, Xb, Yb, Xc, Yc = map(int, input().split())

    (cx, cy), r = minimum_bounding_circle((Xa, Ya), (Xb, Yb), (Xc, Yc))

    def dist(q1, q2):
        x1, y1 = q1
        x2, y2 = q2
        return (x1 - x2) ** 2 + (y1 - y2) ** 2

    for _ in range(Q):
        xq, yq = map(int, input().split())

        d = dist((xq, yq), (cx, cy))

        if d <= r + 1e-10:
            print("Yes")
        else:
            print("No")

    return 0


main()
0