結果
問題 | No.947 ABC包囲網 |
ユーザー | mkawa2 |
提出日時 | 2021-03-18 22:03:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,274 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,664 KB |
最終ジャッジ日時 | 2024-04-28 12:39:44 |
合計ジャッジ時間 | 6,125 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,512 KB |
testcase_01 | AC | 28 ms
11,008 KB |
testcase_02 | AC | 28 ms
11,008 KB |
testcase_03 | AC | 27 ms
11,136 KB |
testcase_04 | AC | 28 ms
11,008 KB |
testcase_05 | AC | 28 ms
11,008 KB |
testcase_06 | AC | 28 ms
10,880 KB |
testcase_07 | AC | 28 ms
11,008 KB |
testcase_08 | AC | 27 ms
10,880 KB |
testcase_09 | AC | 28 ms
11,008 KB |
testcase_10 | AC | 27 ms
10,880 KB |
testcase_11 | AC | 28 ms
10,880 KB |
testcase_12 | AC | 28 ms
10,880 KB |
testcase_13 | AC | 32 ms
10,880 KB |
testcase_14 | AC | 28 ms
10,880 KB |
testcase_15 | AC | 107 ms
11,136 KB |
testcase_16 | AC | 63 ms
11,008 KB |
testcase_17 | AC | 69 ms
11,008 KB |
testcase_18 | AC | 100 ms
11,136 KB |
testcase_19 | AC | 99 ms
11,264 KB |
testcase_20 | AC | 94 ms
11,136 KB |
testcase_21 | AC | 92 ms
11,264 KB |
testcase_22 | AC | 93 ms
11,264 KB |
testcase_23 | AC | 89 ms
11,136 KB |
testcase_24 | AC | 91 ms
11,136 KB |
testcase_25 | AC | 86 ms
11,136 KB |
testcase_26 | AC | 85 ms
11,008 KB |
testcase_27 | AC | 87 ms
11,136 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
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] rr=[r for r,x,y in rxy] rxy.sort(key=lambda x:x[0]) rr.sort() # 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)