結果

問題 No.2602 Real Collider
ユーザー mkawa2
提出日時 2024-01-12 22:04:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,347 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-09-27 22:20:33
合計ジャッジ時間 11,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 WA * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

q=II()
xa,ya,xb,yb,xc,yc=LI()
xy=LLI(q)

xm=(xa+xb)/2
ym=(ya+yb)/2
xn=(xc+xb)/2
yn=(yc+yb)/2
vx=ya-yb
vy=xb-xa
wx=yb-yc
wy=xc-xb
mat=[[vx,-wx,xn-xm],
     [vy,-wy,yn-ym]]

if mat[0][0]==0:
    mat[0],mat[1]=mat[1],mat[0]
d=mat[0][0]
mat[0][0]=1
mat[0][1]/=d
mat[0][2]/=d

c=mat[1][0]
mat[1][0]=0
mat[1][1]-=mat[0][1]*c
mat[1][2]-=mat[0][2]*c

if mat[1][1]:
    s=mat[1][2]/mat[1][1]
    xo,yo=xn+wx*s,yn+wy*s
else:
    xo=(xa+xb+xc)/3
    yo=(ya+yb+yc)/3

r2=(xa-xo)**2+(ya-yo)**2

for x,y in xy:
    if (x-xo)**2+(y-yo)**2>r2:
        print("No")
    else:
        print("Yes")
0