結果
問題 | No.2355 Unhappy Back Dance |
ユーザー | navel_tos |
提出日時 | 2023-06-17 00:33:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 270,952 KB |
最終ジャッジ日時 | 2024-06-24 17:36:27 |
合計ジャッジ時間 | 34,935 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
88,704 KB |
testcase_01 | AC | 128 ms
88,676 KB |
testcase_02 | AC | 130 ms
88,596 KB |
testcase_03 | AC | 126 ms
88,576 KB |
testcase_04 | AC | 126 ms
88,704 KB |
testcase_05 | AC | 123 ms
88,704 KB |
testcase_06 | AC | 371 ms
90,240 KB |
testcase_07 | AC | 2,367 ms
93,960 KB |
testcase_08 | AC | 2,529 ms
93,472 KB |
testcase_09 | AC | 2,419 ms
93,716 KB |
testcase_10 | AC | 3,668 ms
193,396 KB |
testcase_11 | AC | 4,714 ms
216,396 KB |
testcase_12 | AC | 2,537 ms
93,332 KB |
testcase_13 | AC | 2,473 ms
93,460 KB |
testcase_14 | AC | 4,686 ms
234,092 KB |
testcase_15 | AC | 128 ms
88,576 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 | -- | - |
ソースコード
#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 #高速化のため、関数化していた部分を解く x1,y1=P[i]; x2,y2=P[j] if x1==x2: D[(x1,10**100)].append(j) else: R=Fc(y2-y1,x2-x1); D[(R,-R*x1+y1)].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)