A city wants every neighborhood reached by emergency services. Each fire station covers a certain set of neighborhoods, and stations are expensive. What is the fewest stations that together cover every neighborhood?
Strip away the story and you get the set cover problem: given a universe of items and a collection of sets (each covering some items), choose the fewest sets whose union is everything. Skills to cover for a project, tests to cover every feature, sensors to cover every zone — they're all set cover.
Picking some cover is easy. Picking the fewest is one of the most fundamental hard problems — and the close cousin of vertex cover.
Comments
Loading comments...