結果

問題 No.947 ABC包囲網
ユーザー mkawa2mkawa2
提出日時 2021-03-18 22:03:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 155,776 KB
最終ジャッジ日時 2024-11-17 04:18:31
合計ジャッジ時間 73,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 42 ms
130,816 KB
testcase_02 AC 42 ms
57,600 KB
testcase_03 AC 42 ms
131,072 KB
testcase_04 AC 41 ms
57,600 KB
testcase_05 AC 41 ms
131,072 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 43 ms
131,200 KB
testcase_08 AC 41 ms
58,240 KB
testcase_09 AC 41 ms
131,072 KB
testcase_10 AC 41 ms
58,112 KB
testcase_11 AC 42 ms
130,432 KB
testcase_12 AC 43 ms
57,984 KB
testcase_13 AC 42 ms
131,200 KB
testcase_14 AC 43 ms
58,240 KB
testcase_15 AC 144 ms
154,880 KB
testcase_16 AC 80 ms
81,280 KB
testcase_17 AC 118 ms
155,776 KB
testcase_18 AC 117 ms
81,920 KB
testcase_19 AC 112 ms
154,368 KB
testcase_20 AC 118 ms
82,048 KB
testcase_21 AC 113 ms
154,752 KB
testcase_22 AC 113 ms
81,920 KB
testcase_23 AC 119 ms
154,624 KB
testcase_24 AC 126 ms
82,176 KB
testcase_25 AC 113 ms
155,136 KB
testcase_26 AC 115 ms
81,920 KB
testcase_27 AC 112 ms
154,496 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 93 ms
76,672 KB
testcase_52 AC 94 ms
76,288 KB
testcase_53 AC 90 ms
75,904 KB
testcase_54 AC 42 ms
53,120 KB
testcase_55 AC 43 ms
52,864 KB
testcase_56 AC 42 ms
52,864 KB
testcase_57 AC 121 ms
76,928 KB
testcase_58 AC 116 ms
76,800 KB
testcase_59 AC 121 ms
155,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# 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 = 10**16
md = 998244353
# md = 10**9+7

from math import atan2
from bisect import *

n=II()
xy=LLI(n)

rxy=[(atan2(y,x),x,y) for x,y in xy]
rxy.sort(key=lambda x:x[0])
rr=[r for r,x,y in rxy]
# print(rxy)
# print(rr)

def rev(i):
    r,x,y=rxy[i]
    return atan2(-y,-x),-x,-y

ans=0
for j in range(n):
    for i in range(j):
        r1,x1,y1=rev(i)
        r2,x2,y2=rev(j)
        s=x1*y2-y1*x2
        if s==0:continue
        if s<0:r1,r2=r2,r1
        l=bisect_right(rr,r1)
        r=bisect_left(rr,r2)
        if l<=r:ans+=r-l
        else:ans+=n-l+r
        # print(i,j,l,r,ans)

print(ans//3)
0