Set cover problem

From Infogalactic: the planetary knowledge core
(Redirected from Set cover)
Jump to: navigation, search

The set cover problem is a classical question in combinatorics, computer science and complexity theory. It is one of Karp's 21 NP-complete problems shown to be NP-complete in 1972.

It is a problem "whose study has led to the development of fundamental techniques for the entire field" of approximation algorithms.[1]

Given a set of elements \{1,2,...,m\} (called the universe) and a collection S of n sets whose union equals the universe, the set cover problem is to identify the smallest sub-collection of S whose union equals the universe. For example, consider the universe U = \{1, 2, 3, 4, 5\} and the collection of sets S = \{\{1, 2, 3\}, \{2, 4\}, \{3, 4\}, \{4, 5\}\}. Clearly the union of S is U. However, we can cover all of the elements with the following, smaller number of sets: \{\{1, 2, 3\}, \{4, 5\}\}.

More formally, given a universe \mathcal{U} and a family \mathcal{S} of subsets of \mathcal{U}, a cover is a subfamily \mathcal{C}\subseteq\mathcal{S} of sets whose union is \mathcal{U}. In the set covering decision problem, the input is a pair (\mathcal{U},\mathcal{S}) and an integer k; the question is whether there is a set covering of size k or less. In the set covering optimization problem, the input is a pair (\mathcal{U},\mathcal{S}), and the task is to find a set covering that uses the fewest sets.

The decision version of set covering is NP-complete, and the optimization version of set cover is NP-hard .[2]

If each set is assigned a cost, it becomes a weighted set cover problem.

Lua error in package.lua at line 80: module 'strict' not found.

Integer linear program formulation

The minimum set cover problem can be formulated as the following integer linear program (ILP).[3]

minimize \sum_{S \in \mathcal S} x_S (minimize the number of sets)
subject to \sum_{S\colon e \in S} x_S \geqslant 1 for all e\in \mathcal U (cover every element of the universe)
x_S \in \{0,1\} for all S\in \mathcal S. (every set is either in the set cover or not)

This ILP belongs to the more general class of ILPs for covering problems. The integrality gap of this ILP is at most \scriptstyle \log n, so its relaxation gives a factor-\scriptstyle \log n approximation algorithm for the minimum set cover problem (where \scriptstyle n is the size of the universe).[4]

Hitting set formulation

Set covering is equivalent to the hitting set problem. It is easy to see this by observing that an instance of set covering can be viewed as an arbitrary bipartite graph, with sets represented by vertices on the left, the universe represented by vertices on the right, and edges representing the inclusion of elements in sets. The task is then to find a minimum cardinality subset of left-vertices which covers all of the right-vertices. In the Hitting set problem, the objective is to cover the left-vertices using a minimum subset of the right vertices. Converting from one problem to the other is therefore achieved by interchanging the two sets of vertices.

Greedy algorithm

There is a greedy algorithm for polynomial time approximation of set covering that chooses sets according to one rule: at each stage, choose the set that contains the largest number of uncovered elements. It can be shown[5] that this algorithm achieves an approximation ratio of H(s), where s is the size of the set to be covered. In other words, it finds a covering that may be H(n) times as large as the minimum one, where H(n) is the n-th harmonic number:

 H(n) = \sum_{k=1}^{n} \frac{1}{k} \le \ln{n} +1

This greedy algorithm actually achieves an approximation ratio of H(s^\prime) where s^\prime is the maximum cardinality set of S. For δ-dense instances, there exists, however, a c \ln{m}-approximation algorithm for every c > 0.[6]

File:SetCoverGreedy.gif
Tight example for the greedy algorithm with k=3

There is a standard example on which the greedy algorithm achieves an approximation ratio of \log_2(n)/2. The universe consists of n=2^{(k+1)}-2 elements. The set system consists of k pairwise disjoint sets S_1,\ldots,S_k with sizes 2,4,8,\ldots,2^k respectively, as well as two additional disjoint sets T_0,T_1, each of which contains half of the elements from each S_i. On this input, the greedy algorithm takes the sets S_k,\ldots,S_1, in that order, while the optimal solution consists only of T_0 and T_1. An example of such an input for k=3 is pictured on the right.

Inapproximability results show that the greedy algorithm is essentially the best-possible polynomial time approximation algorithm for set cover (see Inapproximability results below), under plausible complexity assumptions.

Low-frequency systems

If each element occurs in at most f sets, then a solution can be found in polynomial time that approximates the optimum to within a factor of f using LP relaxation.[7]

Inapproximability results

When  n refers to the size of the universe, Lund & Yannakakis (1994) showed that set covering cannot be approximated in polynomial time to within a factor of \tfrac{1}{2}\log_2{n} \approx 0.72\ln{n}, unless NP has quasi-polynomial time algorithms. Feige (1998) improved this lower bound to \bigl(1-o(1)\bigr)\cdot\ln{n} under the same assumptions, which essentially matches the approximation ratio achieved by the greedy algorithm. Raz & Safra (1997) established a lower bound of c\cdot\ln{n}, where c is a certain constant, under the weaker assumption that P\not=NP. A similar result with a higher value of c was recently proved by Alon, Moshkovitz & Safra (2006). Dinur & Steurer (2013) showed optimal inapproximability by proving that it cannot be approximated to \bigl(1 - o(1)\bigr) \cdot \ln{n} unless P=NP.

Related problems

  • Hitting set is an equivalent reformulation of Set Cover.
  • Vertex cover is a special case of Hitting Set.
  • Edge cover is a special case of Set Cover.
  • Geometric set cover is a special case of Set Cover when the universe is a set of points in \mathbb{R}^d and the sets are induced by the intersection of the universe and geometric shapes (e.g., disks, rectangles).
  • Set packing is the dual problem of Set Cover.
  • Maximum coverage problem is to choose at most k sets to cover as many elements as possible.
  • Dominating set is the problem of selecting a set of vertices (the dominating set) in a graph such that all other vertices are adjacent to at least one vertex in the dominating set. The Dominating set problem was shown to be NP complete through a reduction from Set cover.
  • Exact cover problem is to choose a set cover with no element included in more than one covering set.
  • Closest pair of points problem
  • Nearest neighbor search

Notes

  1. Vazirani (2001, p. 15)
  2. Korte & Vygen 2012, p. 414.
  3. Vazirani (2001, p. 108)
  4. Vazirani (2001, pp. 110–112)
  5. Chvatal, V. A Greedy Heuristic for the Set-Covering Problem. Mathematics of Operations Research Vol. 4, No. 3 (Aug., 1979), pp. 233-235
  6. Karpinski & Zelikovsky 1998
  7. Vazirani (2001, pp. 118–119)

References

  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.

External links