結果

問題 No.2602 Real Collider
ユーザー pitPpitP
提出日時 2024-01-12 23:14:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,932 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-27 23:57:52
合計ジャッジ時間 32,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 38 ms
54,272 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 931 ms
76,800 KB
testcase_11 AC 395 ms
76,288 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 315 ms
76,032 KB
testcase_16 AC 450 ms
76,160 KB
testcase_17 AC 479 ms
76,604 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 563 ms
76,416 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 319 ms
76,184 KB
testcase_27 WA -
testcase_28 AC 477 ms
76,148 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 466 ms
76,544 KB
testcase_32 AC 389 ms
76,576 KB
testcase_33 AC 442 ms
76,160 KB
testcase_34 AC 455 ms
76,416 KB
testcase_35 AC 310 ms
76,080 KB
testcase_36 AC 307 ms
76,032 KB
testcase_37 AC 482 ms
76,088 KB
testcase_38 AC 493 ms
76,324 KB
testcase_39 AC 472 ms
76,288 KB
testcase_40 AC 284 ms
76,288 KB
testcase_41 AC 530 ms
76,160 KB
testcase_42 AC 417 ms
76,620 KB
testcase_43 AC 458 ms
76,232 KB
testcase_44 AC 538 ms
76,416 KB
testcase_45 AC 367 ms
76,160 KB
testcase_46 AC 343 ms
76,040 KB
testcase_47 AC 488 ms
76,416 KB
testcase_48 AC 406 ms
76,288 KB
testcase_49 AC 350 ms
76,032 KB
testcase_50 AC 283 ms
76,032 KB
testcase_51 AC 295 ms
76,288 KB
testcase_52 AC 232 ms
76,416 KB
testcase_53 AC 456 ms
76,356 KB
testcase_54 AC 372 ms
76,032 KB
testcase_55 AC 407 ms
76,544 KB
testcase_56 AC 408 ms
76,416 KB
testcase_57 AC 380 ms
75,904 KB
testcase_58 AC 200 ms
76,672 KB
testcase_59 AC 440 ms
76,160 KB
testcase_60 AC 403 ms
76,160 KB
testcase_61 AC 337 ms
76,192 KB
testcase_62 AC 465 ms
76,416 KB
testcase_63 AC 518 ms
76,032 KB
testcase_64 AC 590 ms
76,160 KB
testcase_65 AC 323 ms
76,032 KB
testcase_66 AC 480 ms
76,544 KB
testcase_67 AC 268 ms
75,904 KB
testcase_68 AC 298 ms
76,160 KB
testcase_69 AC 234 ms
76,544 KB
testcase_70 AC 261 ms
76,416 KB
testcase_71 AC 315 ms
76,288 KB
testcase_72 AC 439 ms
76,160 KB
testcase_73 AC 376 ms
76,276 KB
testcase_74 AC 440 ms
76,288 KB
testcase_75 AC 486 ms
76,312 KB
testcase_76 AC 421 ms
76,160 KB
testcase_77 AC 452 ms
76,416 KB
testcase_78 AC 522 ms
76,160 KB
testcase_79 AC 456 ms
76,600 KB
testcase_80 AC 514 ms
76,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://qiita.com/tatesuke/items/59133758ec25146766c3
Q = int(input())
a, b, c, d, e, f = map(int, input().split())


if (c - a) * (f - b) - (d - b) * (e - a) == 0:
    # y軸に平行
    if max(a, c, e) == min(a, c, e):
        px_nume = a
        px_deno = 1
        py_nume = max(b, d, f) + min(b, d, f)
        py_deno = 2
        r2 = (py_deno ** 2) * ((px_nume - a * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - max(b, d, f) * py_deno) ** 2)
    else:
        xy = [[a, b], [c, d], [e, f]]
        xy.sort()

        XM = max(a, c, e)
        xm = min(a, c, e)
        px_nume = XM + xm
        px_deno = 2

        YM = max(b, d, f)
        ym = min(b, d, f)
        py_nume = YM + ym
        py_deno = 2

        r2 = (py_deno ** 2) * ((px_nume - xy[0][0] * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - xy[0][1] * py_deno) ** 2)

    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
else:
    aa = a * a
    bb = b * b
    cc = c * c
    dd = d * d
    ee = e * e
    ff = f * f

    py_nume = (e - a) * (aa + bb - cc - dd) - (c - a) * (aa + bb - ee- ff)
    py_deno = 2 * (e - a)*(b - d) - 2 * (c - a) * (b - f)

    if c == a:
        px_nume = 2 * (b - f) * py_nume - (aa + bb - ee - ff) * py_deno
        px_deno = 2 * (e - a) * py_deno
    else:
        px_nume = 2 * (b - d) * py_nume - (aa + bb - cc - dd) * py_deno
        px_deno = 2 * (c - a) * py_deno

    r2 = (py_deno ** 2) * ((px_nume - a * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - b * py_deno) ** 2)
    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
0