結果
問題 | No.1999 Lattice Teleportation |
ユーザー | とりゐ |
提出日時 | 2022-07-01 23:50:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 601 ms / 2,000 ms |
コード長 | 2,003 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 117,504 KB |
最終ジャッジ日時 | 2024-11-26 07:57:15 |
合計ジャッジ時間 | 10,095 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,352 KB |
testcase_01 | AC | 41 ms
52,480 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 42 ms
52,608 KB |
testcase_04 | AC | 58 ms
62,080 KB |
testcase_05 | AC | 111 ms
76,544 KB |
testcase_06 | AC | 103 ms
76,544 KB |
testcase_07 | AC | 72 ms
68,864 KB |
testcase_08 | AC | 55 ms
61,568 KB |
testcase_09 | AC | 39 ms
52,224 KB |
testcase_10 | AC | 38 ms
52,224 KB |
testcase_11 | AC | 100 ms
76,288 KB |
testcase_12 | AC | 435 ms
117,096 KB |
testcase_13 | AC | 492 ms
117,252 KB |
testcase_14 | AC | 38 ms
52,608 KB |
testcase_15 | AC | 601 ms
112,788 KB |
testcase_16 | AC | 350 ms
96,512 KB |
testcase_17 | AC | 446 ms
112,560 KB |
testcase_18 | AC | 419 ms
108,068 KB |
testcase_19 | AC | 503 ms
111,780 KB |
testcase_20 | AC | 469 ms
117,504 KB |
testcase_21 | AC | 473 ms
117,396 KB |
testcase_22 | AC | 475 ms
117,372 KB |
testcase_23 | AC | 213 ms
79,628 KB |
testcase_24 | AC | 267 ms
88,408 KB |
testcase_25 | AC | 468 ms
108,068 KB |
testcase_26 | AC | 370 ms
101,248 KB |
testcase_27 | AC | 338 ms
95,744 KB |
testcase_28 | AC | 540 ms
115,232 KB |
testcase_29 | AC | 323 ms
89,932 KB |
testcase_30 | AC | 228 ms
82,688 KB |
testcase_31 | AC | 225 ms
81,892 KB |
testcase_32 | AC | 347 ms
96,768 KB |
ソースコード
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: continue if y<0: x,y=-x,-y xy.append((x,y)) xy=MergeSort(xy) m=len(xy) XY=[(0,0)] cumx,cumy=0,0 for x,y in xy: cumx+=x cumy+=y XY.append((cumx,cumy)) cumx,cumy=0,0 for x,y in xy[::-1]: cumx+=x cumy+=y XY.append((cumx,cumy)) 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))