Metric k-center


In graph theory, the metric k-center or metric facility location problem is a combinatorial optimization problem studied in theoretical computer science. Given n cities with specified distances, one wants to build k warehouses in different cities and minimize the maximum distance of a city to a warehouse. In graph theory this means finding a set of k vertices for which the largest distance of any point to its closest vertex in the k-set is minimum. The vertices must be in a metric space, providing a complete graph that satisfies the triangle inequality.

Formal definition

Let be a metric space where is a set and is a metric

A set, is provided together with a parameter. The goal is to find a subset with such that the maximum distance of a point in to the closest point in is minimized. The problem can be formally defined as follows:

For a metric space,
That is, Every point in a cluster is in distance at most from its respective center.
The k-Center Clustering problem can also be defined on a complete undirected graph G = as follows:

Given a complete undirected graph G = with distances dN satisfying the triangle inequality, find a subset CV with |C| = k while minimizing:

Computational complexity

In a complete undirected graph G = , if we sort the edges in nondecreasing order of the distances: dd ≤ … ≤ d and let Gi = , where Ei = . The k-center problem is equivalent to finding the smallest index i such that Gi has a dominating set of size at most k.
Although Dominating Set is NP-complete, the k-center problem remains NP-hard. This is clear, since the optimality of a given feasible solution for the k-center problem can be determined through the Dominating Set reduction only if we know in first place the size of the optimal solution , which is precisely the difficult core of the NP-Hard problems.

Approximations

A simple greedy algorithm

A simple greedy approximation algorithm that achieves an approximation factor of 2 builds using a farthest-first traversal in k iterations.
This algorithm simply chooses the point farthest away from the current set of centers in each iteration as the new center. It can be described as follows:
The solution obtained using the simple greedy algorithm is a 2-approximation to the optimal solution. This section focuses on proving this approximation factor.
Given a set of n points,belonging to a metric space, the greedy K-center algorithm computes a set K of k centers, such that K is a 2-approximation to the optimal k-center clustering of V.
i.e.
This theorem can be proven using two cases as follows,
Case 1: Every cluster of contains exactly one point of


Case 2: There are two centers and of that are both in, for some
Another algorithm with the same approximation factor takes advantage of the fact that the k-center problem is equivalent to finding the smallest index i such that Gi has a dominating set of size at most k and computes a maximal independent set of Gi, looking for the smallest index i that has a maximal independent set with a size of at least k.
It is not possible to find an approximation algorithm with an approximation factor of 2 − ε for any ε > 0, unless P = NP.
Furthermore, the distances of all edges in G must satisfy the triangle inequality if the k-center problem is to be approximated within any constant factor, unless P = NP.