Find a point such that the maximum distance to any point in the set of points P is minimized

Given the set of points in the 2d-space P, where Pi = (Xi, Yi),

I need to find the target point T, so that the maximum distance to any Pi is minimized.

T must not exist in P and can be arbitrarily defined

Is there an algorithm I can use for this?

+5
source share
3 answers
+8
source

http://www.cs.mcgill.ca/~cs507/projects/1998/jacob/problem.html

Think this may be the solution to your problem with a pretty good explanation, but this is O (n ^ 2)

+1
source

, , :

(min (Xi) + max (Xi))/2, (min (Yi) + max (Yi))/2)

0

All Articles