Блог пользователя pacha2880

Автор pacha2880, история, 15 месяцев назад, По-английски

What is the best way to solve this problem?, I have a solution in $$$O(n^4)$$$

Given are $$$N$$$ points $$$(x_i, y_i)$$$ in a two-dimensional plane. Find the minimum radius of a circle such that all the points are inside or on it.

Link to the problem https://atcoder.jp/contests/abc151/tasks/abc151_f

thanks in advance.

  • Проголосовать: нравится
  • +5
  • Проголосовать: не нравится

»
15 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by pacha2880 (previous revision, new revision, compare).

»
15 месяцев назад, # |
Rev. 3   Проголосовать: нравится +15 Проголосовать: не нравится

I suppose you can use inversion (geometry).

The idea of inversion is that if you invert about a point $$$P$$$(using radius=1, but that only comes down to a constant difference), then a circle passing through that $$$P$$$ with radius $$$R$$$ becomes a straight line with distance $$$\frac{1}{2R}$$$ away from $$$P$$$, and the points inside the circle becomes the points on the opposite side of the line as $$$P$$$.

Find the convex hull of the $$$N$$$ points. Without loss of generality, suppose that the $$$N$$$ points are their own convex hull. For each point $$$P$$$ on the convex hull, we carry out inversion on the remaining $$$N-1$$$ points. Now we need to find a line farthest from the inversion center $$$P$$$ such that the line separates $$$P$$$ from the inverted $$$N-1$$$ points. To do this, we find the convex hull of these points again, and process each edge of the resulting hull. We seek the largest distance after using each of the $$$N$$$ points as inversion centers.

The time complexity should be $$$O(n^2 \log{n})$$$. Correct me if the algorithm is wrong; I'm not very familiar with this either.

Edit: As pointed out below, there are a variety of solutions as this is a known problem.

»
15 месяцев назад, # |
Rev. 3   Проголосовать: нравится +3 Проголосовать: не нравится

This is a well-known problem called minimum enclosing circle (it has also other names).

I personally use Welzl's algorithm for it with expected time complexity of $$$O(n)$$$.

Code