結果

問題 No.2355 Unhappy Back Dance
ユーザー navel_tosnavel_tos
提出日時 2023-06-17 00:29:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,163 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 98,156 KB
最終ジャッジ日時 2024-06-24 17:31:45
合計ジャッジ時間 13,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
88,696 KB
testcase_01 AC 132 ms
88,704 KB
testcase_02 WA -
testcase_03 AC 131 ms
88,564 KB
testcase_04 AC 132 ms
88,696 KB
testcase_05 AC 129 ms
88,708 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
88,788 KB
testcase_16 AC 482 ms
98,156 KB
testcase_17 AC 494 ms
97,376 KB
testcase_18 AC 435 ms
96,524 KB
testcase_19 AC 474 ms
97,996 KB
testcase_20 AC 466 ms
97,848 KB
testcase_21 AC 370 ms
94,324 KB
testcase_22 AC 253 ms
90,288 KB
testcase_23 AC 249 ms
90,780 KB
testcase_24 AC 463 ms
97,640 KB
testcase_25 AC 376 ms
93,796 KB
testcase_26 AC 393 ms
94,392 KB
testcase_27 AC 323 ms
92,864 KB
testcase_28 AC 161 ms
89,728 KB
testcase_29 AC 179 ms
89,980 KB
testcase_30 AC 435 ms
93,984 KB
testcase_31 AC 405 ms
94,080 KB
testcase_32 AC 239 ms
90,788 KB
testcase_33 AC 325 ms
93,308 KB
testcase_34 AC 151 ms
89,472 KB
testcase_35 AC 163 ms
89,524 KB
testcase_36 AC 364 ms
94,376 KB
testcase_37 AC 295 ms
91,432 KB
testcase_38 AC 328 ms
92,452 KB
testcase_39 AC 307 ms
91,940 KB
権限があれば一括ダウンロードができます

ソースコード

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
    if i==4: break
print(ans)
0