結果

問題 No.947 ABC包囲網
ユーザー mkawa2mkawa2
提出日時 2019-12-16 18:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,162 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-02 20:25:35
合計ジャッジ時間 28,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 42 ms
52,608 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 43 ms
52,736 KB
testcase_12 AC 43 ms
52,480 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 43 ms
52,480 KB
testcase_15 AC 88 ms
75,904 KB
testcase_16 AC 73 ms
75,648 KB
testcase_17 AC 70 ms
71,424 KB
testcase_18 AC 74 ms
74,112 KB
testcase_19 AC 76 ms
75,776 KB
testcase_20 AC 73 ms
74,752 KB
testcase_21 AC 76 ms
76,032 KB
testcase_22 AC 75 ms
75,648 KB
testcase_23 AC 73 ms
73,856 KB
testcase_24 AC 76 ms
75,392 KB
testcase_25 AC 77 ms
75,648 KB
testcase_26 AC 73 ms
73,344 KB
testcase_27 AC 78 ms
75,392 KB
testcase_28 AC 63 ms
64,256 KB
testcase_29 AC 1,100 ms
80,000 KB
testcase_30 AC 67 ms
67,840 KB
testcase_31 AC 1,128 ms
80,128 KB
testcase_32 AC 1,117 ms
80,000 KB
testcase_33 AC 1,105 ms
80,128 KB
testcase_34 AC 1,135 ms
80,128 KB
testcase_35 AC 1,079 ms
80,640 KB
testcase_36 AC 1,108 ms
80,128 KB
testcase_37 AC 1,162 ms
80,256 KB
testcase_38 AC 1,126 ms
80,128 KB
testcase_39 AC 1,127 ms
80,384 KB
testcase_40 AC 1,131 ms
80,384 KB
testcase_41 AC 1,098 ms
80,000 KB
testcase_42 AC 1,096 ms
79,744 KB
testcase_43 AC 1,090 ms
80,256 KB
testcase_44 AC 1,122 ms
80,384 KB
testcase_45 AC 1,108 ms
80,512 KB
testcase_46 AC 1,126 ms
80,256 KB
testcase_47 AC 1,098 ms
80,128 KB
testcase_48 AC 1,139 ms
81,024 KB
testcase_49 AC 1,094 ms
80,384 KB
testcase_50 AC 1,151 ms
80,384 KB
testcase_51 AC 63 ms
64,384 KB
testcase_52 AC 57 ms
62,976 KB
testcase_53 AC 58 ms
63,360 KB
testcase_54 AC 43 ms
52,992 KB
testcase_55 AC 43 ms
52,608 KB
testcase_56 AC 41 ms
52,736 KB
testcase_57 AC 78 ms
75,648 KB
testcase_58 AC 79 ms
76,160 KB
testcase_59 AC 79 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
from math import *
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n = int(input())
    rad = []
    rxy = []
    for _ in range(n):
        x, y = MI()
        rxy.append((atan2(y, x), x, y))
    rxy.sort()
    rad = [r for r, x, y in rxy]
    # print(rxy)
    # print(rad)
    ans = 0
    for i, (r0, x0, y0) in enumerate(rxy[:-2]):
        if r0 >= 0: break
        r0p = atan2(-y0, -x0)
        L = bisect_right(rad, r0p)
        for r1, x1, y1 in rxy[i + 1:]:
            if r0 == r1: continue
            if r1 >= r0p: break
            r1p = atan2(-y1, -x1)
            R = bisect_left(rad, r1p)
            if r1p < 0: R = n
            ans += R - L
            # print(i, r0, x0, y0, atan2(-y0, -x0), L)
            # print(r1, x1, y1, atan2(-y1, -x1), R)
    print(ans)

main()
0