結果
問題 | No.2180 Comprehensive Line Segments |
ユーザー | MasKoaTS |
提出日時 | 2022-11-30 21:55:34 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,628 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 1,083,724 KB |
最終ジャッジ日時 | 2024-11-17 01:32:45 |
合計ジャッジ時間 | 66,408 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 279 ms
98,896 KB |
testcase_01 | AC | 129 ms
249,532 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | AC | 135 ms
88,008 KB |
testcase_06 | AC | 123 ms
88,280 KB |
testcase_07 | AC | 125 ms
88,448 KB |
testcase_08 | AC | 128 ms
88,524 KB |
testcase_09 | AC | 215 ms
98,756 KB |
testcase_10 | AC | 306 ms
103,032 KB |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | TLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | TLE | - |
testcase_17 | MLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 215 ms
90,476 KB |
testcase_21 | MLE | - |
testcase_22 | AC | 389 ms
93,476 KB |
testcase_23 | AC | 2,299 ms
220,268 KB |
testcase_24 | AC | 868 ms
114,116 KB |
testcase_25 | TLE | - |
testcase_26 | MLE | - |
testcase_27 | WA | - |
testcase_28 | MLE | - |
ソースコード
from __future__ import annotations import sys from collections import deque from itertools import combinations from fractions import Fraction as frac input = sys.stdin.readline class Vector2: def __init__(self, x, y): self.x = x self.y = y def __str__(self): return str((self.x, self.y)) __repr__ = __str__ def __eq__(self, other): return (self.x == other.x and self.y == other.y) def __hash__(self): return hash((self.x, self.y)) def __add__(self, other): return Vector2(self.x + other.x, self.y + other.y) def __sub__(self, other): return Vector2(self.x - other.x, self.y - other.y) def __mul__(self, other): return self.x * other.y - self.y * other.x def normalize(self) -> Vector2: assert(self.x != 0 or self.y != 0) norm = self.x ** 2 + self.y ** 2 self.x *= abs(self.x) / norm self.y *= abs(self.y) / norm return self class Line: def __init__(self, a, b, c): self.a = a self.b = b self.c = c def __str__(self): return str((self.a, self.b, self.c)) __repr__ = __str__ def __eq__(self, other): return (self.a == other.a and self.b == other.b and self.c == other.c) def __hash__(self): return hash((self.a, self.b, self.c)) @classmethod def calc_line(cls, one: Vector2, other: Vector2) -> Line: if(one == other): return None x1 = one.x; y1 = one.y x2 = other.x; y2 = other.y if(x1 == x2): return Line(1, 0, x1) a = (y1 - y2) / (x1 - x2) c = y1 - a * x1 return Line(-a, 1, c) @classmethod def calc_intersection(cls, one: Line, other: Line) -> Vector2: p = one.a * other.b - other.a * one.b if(p == 0): return None q = other.b * one.c - one.b * other.c x = q / p y = (other.c - other.a * x) / other.b if(one.b == 0) else (one.c - one.a * x) / one.b return Vector2(x, y) """ Main Code """ # 入力 N = int(input()) P = [Vector2(*map(frac, input().split())) for _ in [0] * N] # 点が 1 個のときは必ず答えは 1 if(N == 1): print(1) exit(0) # 任意の 2 点に関する直線を調べてsetに追加 line_set = set([]) for p1, p2 in combinations(P, 2): line_set.add(Line.calc_line(p1, p2)) # 任意の 2 直線の交点を調べてlist, setに追加 point_set = set(P) point_num = N for l1, l2 in combinations(line_set, 2): p = Line.calc_intersection(l1, l2) if(p is None or p in point_set): continue point_set.add(p) P.append(p) point_num += 1 # 任意の2点について、2点から構成されるベクトルを調べて正規化 vec_lis = [[None]*point_num for _ in [0]*point_num] for i in range(point_num - 1): for j in range(i + 1, point_num): if(Line.calc_line(P[i], P[j]) not in line_set): continue vec_lis[i][j] = (P[j] - P[i]).normalize() vec_lis[j][i] = (P[i] - P[j]).normalize() # グラフ探索 goal = (1 << N) - 1 dp = [[[N]*point_num for _ in [0]*point_num] for _ in [0]*(goal+1)] que = deque([]) ans = N for i in range(N): dp[1 << i][i][i] = 0 que.append((1 << i, i, i, 0)) while(que): b_now, v_prev, v_now, c_now = que.popleft() if(c_now > dp[b_now][v_prev][v_now]): continue if(b_now == goal): ans = c_now break for v_next in range(point_num): if(v_next in [v_prev, v_now] or min(v_now, v_next) >= N): continue if(vec_lis[v_now][v_next] is None): continue b_next = b_now | (1 << v_next) if(v_next < N) else b_now c_next = c_now + (v_prev == v_now or vec_lis[v_prev][v_now] != vec_lis[v_now][v_next]) if(c_next >= dp[b_next][v_now][v_next]): continue dp[b_next][v_now][v_next] = c_next if(c_now == c_next): que.appendleft((b_next, v_now, v_next, c_next)) else: que.append((b_next, v_now, v_next, c_next)) print(ans)