結果

問題 No.2355 Unhappy Back Dance
ユーザー navel_tosnavel_tos
提出日時 2023-06-17 00:29:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,144 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 271,224 KB
最終ジャッジ日時 2024-06-24 17:32:42
合計ジャッジ時間 35,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
88,704 KB
testcase_01 AC 130 ms
88,320 KB
testcase_02 AC 146 ms
88,320 KB
testcase_03 AC 132 ms
88,280 KB
testcase_04 AC 142 ms
88,576 KB
testcase_05 AC 134 ms
88,704 KB
testcase_06 AC 416 ms
90,368 KB
testcase_07 AC 2,547 ms
93,200 KB
testcase_08 AC 2,571 ms
93,664 KB
testcase_09 AC 2,519 ms
93,712 KB
testcase_10 AC 3,727 ms
195,452 KB
testcase_11 AC 4,176 ms
222,404 KB
testcase_12 AC 2,520 ms
94,212 KB
testcase_13 AC 2,495 ms
94,468 KB
testcase_14 AC 4,695 ms
231,852 KB
testcase_15 AC 132 ms
88,600 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder393F

'''
aftercontest これ解けそう
N^2 * logN が間に合うだろ
'''
from fractions import Fraction as Fc
from collections import defaultdict as dd
f=lambda:tuple(map(int,input().split()))

#直線の切片のx座標y座標を返す
def line(P,Q):
    x1,y1=P; x2,y2=Q
    if x1==x2: return (x1,10**100)
    R=Fc(y2-y1,x2-x1); return (R,-R*x1+y1)

N=int(input()); P=[f() for _ in range(N)]; ans=0

#各人に対して直線の式を計算する
for i in range(N):
    D=dd(list); hantei=0
    for j in range(N):
        if i==j: continue
        D[line(P[i],P[j])].append(j)
    for k in D:
        if len(D[k])==1: continue
        if k[1]==10**100:
            plus,minus=0,0
            for now in D[k]:
                if   P[i][1]<P[now][1] and not plus: plus=1
                elif P[i][1]>P[now][1] and not minus: minus=1
                else: hantei=1; break
        else:
            plus,minus=0,0
            for now in D[k]:
                if   P[i][0]<P[now][0] and not plus: plus=1
                elif P[i][0]>P[now][0] and not minus: minus=1
                else: hantei=1; break
    ans+=hantei
print(ans)
0