結果

問題 No.2180 Comprehensive Line Segments
ユーザー MasKoaTSMasKoaTS
提出日時 2022-10-13 12:06:15
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,627 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 201,204 KB
最終ジャッジ日時 2024-11-17 01:20:51
合計ジャッジ時間 109,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
97,964 KB
testcase_01 AC 147 ms
182,516 KB
testcase_02 AC 141 ms
181,592 KB
testcase_03 TLE -
testcase_04 AC 145 ms
181,172 KB
testcase_05 AC 141 ms
95,200 KB
testcase_06 AC 143 ms
186,236 KB
testcase_07 AC 145 ms
187,068 KB
testcase_08 AC 143 ms
201,204 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 175 ms
89,256 KB
testcase_21 TLE -
testcase_22 AC 405 ms
92,372 KB
testcase_23 AC 2,572 ms
105,176 KB
testcase_24 AC 1,368 ms
100,932 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from fractions import Fraction as frac
input = sys.stdin.readline


class Vector2:
	def __init__(self, x: frac, y: frac):
		self.x = x
		self.y = y

	def __eq__(self, other):
		return (self.x == other.x and self.y == other.y)

	def __sub__(self, other):
		return Vector2(other.x - self.x, other.y - self.y)

	def __mul__(self, other):
		return self.x * other.y - self.y * other.x

def normalize_vector(v: Vector2) -> Vector2:
	assert(v.x != 0 or v.y != 0)
	norm = v.x ** 2 + v.y ** 2
	return Vector2(v.x * abs(v.x) / norm, v.y * abs(v.y) / norm)


def sgn(x: frac) -> int:
	if(x > 0):
		return 1
	if(x < 0):
		return -1
	return 0


"""
Main Code
"""

N = int(input())
P = [Vector2(*map(frac, input().split())) for _ in [0] * N]

if(N == 1):
	print(1)
	exit(0)

vec_lis = [[None]*N for _ in [0]*N]
for i in range(N - 1):
	for j in range(i + 1, N):
		vec_lis[i][j] = normalize_vector(P[j] - P[i])
		vec_lis[j][i] = normalize_vector(P[i] - P[j])

ans = N
num = [*range(N)]
for tup in permutations(num):
	p = [P[k] for k in num]
	lis = [vec_lis[tup[0]][tup[1]]]
	flag = False
	for i in range(1, N - 1):
		v = vec_lis[tup[i]][tup[i + 1]]
		if(lis[-1] == v):
			continue
		if(lis[-1] * v == 0):
			flag = True
			break
		lis.append(v)
	if(flag):
		continue

	M = len(lis)
	if(M <= 2):
		ans = min(ans, M)
		continue

	dp = [[-1]*2 for _ in [0]*(M - 1)]
	dp[0][0] = 0
	for j in range(1, M - 1):
		v1, v2, v3 = lis[j - 1: j + 2]
		if(sgn(v1 * v2) == sgn(v2 * v3) == sgn(v1 * v3)):
			dp[j][1] = dp[j - 1][0] + 1
		dp[j][0] = max(dp[j - 1])

	ans = min(ans, M - max(dp[M - 2]))

print(ans)
0