Set covering problem: Difference between revisions

From Cornell University Computational Optimization Open Textbook - Optimization Wiki
Jump to navigation Jump to search
No edit summary
Line 29: Line 29:
The objective function <math>\sum_{i=1}^n c_i y_i</math> is defined to minimize the number of subset <math> s_i</math> that cover all elements in the universe by minimizing its total cost. The first constraint implies that every element j in the universe U must be be covered where <math> a_{ij}</math>=1 if  j <math>\in</math> <math> s_i</math> and 0 otherwise. The second constraint <math> y_i \in \{0, 1\} </math> indicates that the decision variables are binary.  
The objective function <math>\sum_{i=1}^n c_i y_i</math> is defined to minimize the number of subset <math> s_i</math> that cover all elements in the universe by minimizing its total cost. The first constraint implies that every element j in the universe U must be be covered where <math> a_{ij}</math>=1 if  j <math>\in</math> <math> s_i</math> and 0 otherwise. The second constraint <math> y_i \in \{0, 1\} </math> indicates that the decision variables are binary.  


==Example==
==Numerical Example==
Let’s consider a simple example where we assign cameras at different locations. Each location covers some areas of stadiums, and our goal is to put the least amount of cameras such that all areas of stadiums are covered. We have stadium areas from 1 to 15, and possible camera locations from 1 to 8.
 
We are given that camera location 1 covers stadium areas 1,3,4,6,7, camera location 2 covers stadium areas 4,7,8,12, while the remaining camera locations and the stadium areas that the cameras can cover are given in table 1 below:
{| class="wikitable"
|+Table 1:
!Camera Location
!Stadium Areas
|-
|1
|1,3,4,6,7
|-
|2
|4,7,8,12
|-
|3
|2,5,9,11,13
|-
|4
|1,2,14,15
|-
|5
|3,6,10,12,14
|-
|6
|8,14,15
|-
|7
|1,2,6,11
|-
|8
|1,2,4,6,8,12
|}
To reformulate the problem, we can list the stadium areas and the camera locations that cover each stadium area. For instance, stadium area 1 can be covered with camera location 1,4,7,8, stadium area 2 can be covered with camera location 3,4,7,8, while the rest are given in table 2 below:
{| class="wikitable"
!Stadium Area
!Camera Location
|-
|1
|1,4,7,8
|-
|2
|3,4,7,8
|-
|3
|1,5
|-
|4
|1,2,8
|-
|5
|3
|-
|6
|1,5,7,8
|-
|7
|1,2
|-
|8
|2,6,8
|-
|9
|3
|-
|10
|5
|-
|11
|3,7
|-
|12
|2,5,8
|-
|13
|3
|-
|14
|4,5,6
|-
|15
|4,6
|}
We can then represent the above information using binary values. If the stadium area i can be covered with camera location j, then we have y_ij = 1. If not, y_ij = 0. For instance, stadium area 1 is covered by camera location 1, so y11 = 1, while stadium area 1 is not covered by camera location 2, so y12 = 0. The binary variable yij values are given in the table below:





Revision as of 17:15, 24 November 2020

Authors: Sherry Liang, Khalid Alanazi, Kumail Al Hamoud

Introduction

The set covering problem is a significant NP-hard problem in combinatorial optimization. In the set covering problem, two sets are given: a set U of elements and a set S of subsets of the set U. Each subset in S is associated with a predetermined cost, and the union of all the subsets covers the set U. This combinatorial problem then concerns finding the optimal number of subsets whose union covers the universal set while minimizing the total cost.1 The problem has many applications in the airline industry, and it was explored on an industrial scale as early as the 1970s.2

Methodology

The mathematical formulation of the set covering problem is define as follows. We define U = {, ….. } as the universe of elements and S = {, ….,} as a collection of subsets such that U and the union of cover U (i.e. = U ). Addionally, each set must cover at least one element of U and has associated cost that is larger than zero (i.e. > 0). The objective is to find the minimum cost sub-collection of sets X S that covers all the elements in the universe U.


An integer linear program (ILP) model can be formulated for the minimum set covering problem as follows:

Decision variables

Objective function

minimize

Constraints


The objective function is defined to minimize the number of subset that cover all elements in the universe by minimizing its total cost. The first constraint implies that every element j in the universe U must be be covered where =1 if j and 0 otherwise. The second constraint indicates that the decision variables are binary.

Numerical Example

Let’s consider a simple example where we assign cameras at different locations. Each location covers some areas of stadiums, and our goal is to put the least amount of cameras such that all areas of stadiums are covered. We have stadium areas from 1 to 15, and possible camera locations from 1 to 8.

We are given that camera location 1 covers stadium areas 1,3,4,6,7, camera location 2 covers stadium areas 4,7,8,12, while the remaining camera locations and the stadium areas that the cameras can cover are given in table 1 below:

Table 1:
Camera Location Stadium Areas
1 1,3,4,6,7
2 4,7,8,12
3 2,5,9,11,13
4 1,2,14,15
5 3,6,10,12,14
6 8,14,15
7 1,2,6,11
8 1,2,4,6,8,12

To reformulate the problem, we can list the stadium areas and the camera locations that cover each stadium area. For instance, stadium area 1 can be covered with camera location 1,4,7,8, stadium area 2 can be covered with camera location 3,4,7,8, while the rest are given in table 2 below:

Stadium Area Camera Location
1 1,4,7,8
2 3,4,7,8
3 1,5
4 1,2,8
5 3
6 1,5,7,8
7 1,2
8 2,6,8
9 3
10 5
11 3,7
12 2,5,8
13 3
14 4,5,6
15 4,6

We can then represent the above information using binary values. If the stadium area i can be covered with camera location j, then we have y_ij = 1. If not, y_ij = 0. For instance, stadium area 1 is covered by camera location 1, so y11 = 1, while stadium area 1 is not covered by camera location 2, so y12 = 0. The binary variable yij values are given in the table below:


Applications

The applications of the set covering problem span a wide range of applications, but its usefulness is evident in industrial and governmental planning. Variations of the set covering problem that are of practical significance include the following.

The optimal location problem
This set covering problems is concerned with maximizing the coverage of some public facility placed at different locations.3 Consider the problem of placing fire stations to serve the towns of some city.4 If each fire station can serve its town and all adjacent towns, we can formulate a set covering problem where each subset consists of a set of adjacent towns. The problem is then solved to minimize the required number of fire stations to serve the whole city.
The optimal route selection problem
Consider the problem of selecting the optimal bus routes to place pothole detectors. Due to scarcity of the physical sensors, the problem does not allow for placing a detector at every road. The task of finding the maximum coverage using a limited number of detectors could be formulated as a set covering problem.5 Specifically, giving a collection of routes U, where each route itself is divided into segments. The segments of two routes can overlap. The goal is then to select the routes that maximize number of covered segments.
The airline crew scheduling problem
An important application of large-scale set covering is the airline crew scheduling problem, which pertains to assigning airline staff to work shifts.2,6 Thinking of the collection of flights as a universal set to be covered, we can formulate a set covering problem to search for the optimal assignment of employees to flights.

Conclusion

The set covering problem, which aims to find the least number of subsets that cover some universal set, is a widely known NP-hard combinatorial problem. Due to its applicability to route planning and airline crew scheduling, several methods have been proposed to solve it. Its straightforward formulation allows for the use of off-the-shelf optimizers to solve it. Moreover, heuristic techniques and greedy algorithms can be used to solve large-scale set covering problems for industrial applications.

References

  1. Grossman, T., & Wool, A. (1997). Computational experience with approximation algorithms for the set covering problem. European Journal of Operational Research, 101(1), 81-92. doi:10.1016/s0377-2217(96)00161-0
  2. RUBIN, J. (1973). A Technique for the Solution of Massive Set Covering Problems, with Application to Airline Crew Scheduling. Transportation Science, 7(1), 34-48. Retrieved November 23, 2020, from http://www.jstor.org/stable/25767684
  3. Church, R., ReVelle, C. The maximal covering location problem. Papers of the Regional Science Association 32, 101–118 (1974). https://doi.org/10.1007/BF01942293
  4. Aktaş, E., Özaydın, Ö, Bozkaya, B., Ülengin, F., & Önsel, Ş. (2013). Optimizing Fire Station Locations for the Istanbul Metropolitan Municipality. Interfaces, 43(3), 240-255. doi:10.1287/inte.1120.0671
  5. Ali, J., & Dyo, V. (2017). Coverage and Mobile Sensor Placement for Vehicles on Predetermined Routes: A Greedy Heuristic Approach. Proceedings of the 14th International Joint Conference on E-Business and Telecommunications. doi:10.5220/0006469800830088
  6. Marchiori, E., & Steenbeek, A. (2000). An Evolutionary Algorithm for Large Scale Set Covering Problems with Application to Airline Crew Scheduling. EvoWorkshops.