結果

問題 No.2602 Real Collider
ユーザー mkawa2mkawa2
提出日時 2024-01-12 22:18:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,763 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 97,312 KB
最終ジャッジ日時 2024-09-27 22:47:11
合計ジャッジ時間 11,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37 WA * 41
権限があれば一括ダウンロードができます

ソースコード

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

def isobt(xa,ya,xb,yb,xc,yc):
    vx,vy=xb-xa,yb-ya
    wx,wy=xc-xa,yc-ya
    return vx*wx+vy*wy<=0

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

if isobt(xa,ya,xb,yb,xc,yc):
    xo=(xb+xc)/2
    yo=(yb+yc)/2
elif isobt(xb,yb,xa,ya,xc,yc):
    xo=(xa+xc)/2
    yo=(ya+yc)/2
elif isobt(xc,yc,xa,ya,xb,yb):
    xo=(xb+xa)/2
    yo=(yb+ya)/2
else:
    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