結果

問題 No.947 ABC包囲網
ユーザー maspymaspy
提出日時 2020-03-21 20:23:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 663 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,904 KB
最終ジャッジ日時 2024-06-06 02:19:21
合計ジャッジ時間 37,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
43,368 KB
testcase_01 AC 528 ms
43,640 KB
testcase_02 AC 527 ms
43,628 KB
testcase_03 AC 527 ms
43,520 KB
testcase_04 AC 527 ms
43,756 KB
testcase_05 AC 528 ms
43,492 KB
testcase_06 AC 533 ms
43,392 KB
testcase_07 AC 528 ms
43,876 KB
testcase_08 AC 538 ms
43,640 KB
testcase_09 AC 530 ms
43,492 KB
testcase_10 AC 540 ms
43,392 KB
testcase_11 AC 537 ms
43,392 KB
testcase_12 AC 535 ms
43,504 KB
testcase_13 AC 528 ms
43,360 KB
testcase_14 AC 527 ms
43,372 KB
testcase_15 AC 537 ms
43,640 KB
testcase_16 AC 534 ms
43,392 KB
testcase_17 AC 532 ms
43,772 KB
testcase_18 AC 530 ms
43,876 KB
testcase_19 AC 534 ms
43,392 KB
testcase_20 AC 533 ms
43,388 KB
testcase_21 AC 534 ms
43,752 KB
testcase_22 AC 535 ms
43,772 KB
testcase_23 AC 532 ms
43,524 KB
testcase_24 AC 527 ms
43,392 KB
testcase_25 AC 538 ms
43,900 KB
testcase_26 AC 538 ms
43,772 KB
testcase_27 AC 532 ms
43,392 KB
testcase_28 AC 653 ms
43,520 KB
testcase_29 AC 657 ms
43,624 KB
testcase_30 AC 658 ms
43,748 KB
testcase_31 AC 656 ms
43,768 KB
testcase_32 AC 650 ms
43,744 KB
testcase_33 AC 657 ms
43,516 KB
testcase_34 AC 651 ms
43,772 KB
testcase_35 AC 657 ms
43,644 KB
testcase_36 AC 663 ms
43,368 KB
testcase_37 AC 659 ms
43,624 KB
testcase_38 AC 663 ms
43,644 KB
testcase_39 AC 655 ms
43,520 KB
testcase_40 AC 659 ms
43,752 KB
testcase_41 AC 659 ms
43,904 KB
testcase_42 AC 656 ms
43,752 KB
testcase_43 AC 655 ms
43,760 KB
testcase_44 AC 661 ms
43,880 KB
testcase_45 AC 656 ms
43,516 KB
testcase_46 AC 657 ms
43,620 KB
testcase_47 AC 651 ms
43,624 KB
testcase_48 AC 654 ms
43,748 KB
testcase_49 AC 652 ms
43,644 KB
testcase_50 AC 656 ms
43,388 KB
testcase_51 AC 528 ms
43,752 KB
testcase_52 AC 527 ms
43,624 KB
testcase_53 AC 523 ms
43,648 KB
testcase_54 AC 528 ms
43,640 KB
testcase_55 AC 530 ms
43,368 KB
testcase_56 AC 530 ms
43,880 KB
testcase_57 AC 540 ms
43,624 KB
testcase_58 AC 531 ms
43,360 KB
testcase_59 AC 538 ms
43,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N = int(readline())
XY = np.array(read().split(), np.int64)
X = XY[::2]
Y = XY[1::2]
g = np.abs(np.gcd(X, Y))
Xd = X // g
Yd = Y // g
key = (Xd << 32) + Yd

total = N * (N - 1) * (N - 2) // 6
ng0 = 0
ng1 = 0
ng2 = 0
ng3 = 0
ng4 = 0
for x, y, k in zip(X, Y, key):
    n = np.count_nonzero(X * y - Y * x > 0)
    same = np.count_nonzero(key == k)
    opp = np.count_nonzero(key == -k)
    ng0 += n * (n - 1) // 2
    ng1 += (same - 1) * n
    ng2 += opp * (N - same - opp)
    ng3 += (same - 1) * opp
    ng4 += (same - 1) * (same - 2) // 2

ng = ng0 + (ng1 + ng2 + ng3) // 2 + ng4 // 3

print(total - ng)
0