結果

問題 No.1999 Lattice Teleportation
ユーザー とりゐとりゐ
提出日時 2022-07-01 23:21:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,287 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 86,988 KB
実行使用メモリ 161,676 KB
最終ジャッジ日時 2023-08-17 11:07:22
合計ジャッジ時間 17,544 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,592 KB
testcase_01 AC 68 ms
71,624 KB
testcase_02 AC 72 ms
71,300 KB
testcase_03 AC 70 ms
71,852 KB
testcase_04 AC 83 ms
76,128 KB
testcase_05 AC 148 ms
79,216 KB
testcase_06 AC 145 ms
79,372 KB
testcase_07 AC 106 ms
77,444 KB
testcase_08 AC 79 ms
76,440 KB
testcase_09 AC 67 ms
71,528 KB
testcase_10 AC 68 ms
71,340 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,002 ms
161,096 KB
testcase_14 WA -
testcase_15 AC 1,033 ms
156,484 KB
testcase_16 AC 703 ms
121,652 KB
testcase_17 AC 706 ms
149,504 KB
testcase_18 AC 633 ms
141,016 KB
testcase_19 AC 899 ms
147,444 KB
testcase_20 AC 1,031 ms
159,732 KB
testcase_21 AC 1,045 ms
157,052 KB
testcase_22 AC 1,041 ms
157,260 KB
testcase_23 AC 321 ms
87,096 KB
testcase_24 AC 533 ms
106,360 KB
testcase_25 AC 629 ms
137,224 KB
testcase_26 AC 565 ms
129,708 KB
testcase_27 AC 749 ms
124,640 KB
testcase_28 AC 741 ms
147,900 KB
testcase_29 AC 650 ms
119,084 KB
testcase_30 AC 440 ms
96,764 KB
testcase_31 AC 332 ms
91,172 KB
testcase_32 AC 543 ms
122,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def compare(a,b):
  # 比較関数 (a<=b)
  
  # 偏角ソート
  ax, ay = a
  bx, by = b
  if ay < 0:
    return by >= 0 or ax * by - ay * bx > 0
  if ay == 0:
    return ax >= 0 and (by > 0 or (by == 0 and bx < 0))
  return by >= 0 and (ax * by - ay * bx) > 0


def merge(l, r):
    new = []
    ln = 0
    rn = 0
    while ln < len(l) and rn < len(r):
        if compare(l[ln],r[rn]):
            new.append(l[ln])
            ln += 1
        else:
            new.append(r[rn])
            rn += 1
    for i in range(ln, len(l)):
        new.append(l[i])
    for i in range(rn, len(r)):
        new.append(r[i])
    return new
 
def MergeSort(l):
    if len(l) == 0:
        return []
    if len(l) == 1:
        return l
    else:
        a = l[:len(l)//2]
        b = l[len(l)//2:]
        return merge(MergeSort(a), MergeSort(b))

n=int(input())
xy=[]
for i in range(n):
  x,y=map(int,input().split())
  if x==y==0:
    pass
  xy.append((x,y))
xy=MergeSort(xy)
m=len(xy)
xy2=[]

from math import atan2,degrees

for x,y in xy:
  xy2.append((x,y,degrees(atan2(y,x))))


for x,y in xy:
  xy2.append((x,y,degrees(atan2(y,x))+360))


for x,y in xy:
  xy2.append((x,y,degrees(atan2(y,x))+720))
xy=xy2

XY=[]
tmpx,tmpy=0,0
R=-1
for L in range(m):
  Lx,Ly,Lrad=xy[L]
  while True:
    XY.append((tmpx,tmpy))
    Rx,Ry,Rrad=xy[R+1]
    if Ry*Lx-Ly*Rx>=0 and Rrad-Lrad<181:
      tmpx+=Rx
      tmpy+=Ry
      R+=1
    else:
      break
  tmpx-=Lx
  tmpy-=Ly

def cross3(a, b, c):
    return (b[0]-a[0])*(c[1]-a[1]) - (b[1]-a[1])*(c[0]-a[0])
 
# ps = [(x, y), ...]: ソートされた座標list
def convex_hull(ps):
    qs = []
    N = len(ps)
    for p in ps:
        # 一直線上で高々2点にする場合は ">=" にする
        while len(qs) > 1 and cross3(qs[-1], qs[-2], p) >= 0:
            qs.pop()
        qs.append(p)
    t = len(qs)
    for i in range(N-2, -1, -1):
        p = ps[i]
        while len(qs) > t and cross3(qs[-1], qs[-2], p) > 0:
            qs.pop()
        qs.append(p)
    return qs

from math import gcd


XY.sort()
ch=convex_hull(XY)
m=len(ch)-1
area=0
point_cnt=0
use_cnt=0
for i in range(m):
  x1,y1=ch[i]
  x2,y2=ch[i+1]
  area+=x1*y2-x2*y1
  point_cnt+=gcd(x1-x2,y1-y2)
point_cnt2=(area-point_cnt)//2+1
ans=point_cnt+point_cnt2
print(ans%(10**9+7))
0