Chapter 8: NP-complete problems
23E
In the NODE-DISJOINT PATHS problem, the input is an undirected graph in which some vertices have been specially marked: a certain number of “sources”
- Reduce from
. - For a
formula with m clauses and n variables, use sources and destinations. Introduce one source/destination pair for each variable , and one source/destination pair for each clause . - For each
clause, introducenew intermediate vertices, one for each literal occurring in that clause and one for its complement.
Notice that if the path from
Q10E
Proving NP-completeness by generalization. For each of the problems below, prove that it is NP-complete by showing that it is a generalization of some NP-complete problem we have seen in this chapter.
- SUBGRAPH ISOMORPHISM: Given as input two undirected graphs
and , determine whether is a subgraph of H (that is, whether by deleting certain vertices and edges of we obtain a graph that is, up to renaming of vertices, identical to ), and if so, return the corresponding mapping of into . - LONGEST PATH: Given a graph role="math" localid="1658141805147"
and an integer find in a simple path of length . - MAX SAT: Given a CNF formula and an integer
, find a truth assignment that satisfies at least clauses. - DENSE SUBGRAPH: Given a graph and two integers
and , find a set of a vertices of such that there are at least edges between them. - SPARSE SUBGRAPH: Given a graph and two integers
and , find a set of a vertices of such that there are at most edges between them. - SET COVER. (This problem generalizes two knownNP-complete problems.)
- RELIABLE NETWORK: We are given two
matrices, a distance matrix and a connectivity requirement matrix , as well as a budget ; we must find a graph such that (1) the total cost of all edges is or less and (2) between any two distinct vertices and there are vertex-disjoint paths.
Q13E
Determine which of the following problems are NP-complete and which are solvable in polynomial time. In each problem you are given an undirected graph
(a)A set of nodes
(b)A set of nodes
(c)A set of nodes
(d)An integer
(e)An integer
(f)An integer
Q14E
Prove that the following problem is NP-complete: given an undirected graph
Q15E
Show that the following problem is NP-complete.
MAXIMUM COMMON SUBGRAPHInput: Two graphs
Q16E
We are feeling experimental and want to create a new dish. There are various ingredients we can choose from and we’d like to use as many of them as possible, but some ingredients don’t go well with others. If there arepossible ingredients (numbered
In this case, ingredients
.We want this penalty to be small.
EXPERIMENTAL CUISINE
Input:,
OUTPUT:The maximum number of ingredients we can choose with penalty
Show that ifEXPERIMENTAL CUISINEis solvable in polynomial time, then so is 3SAT.
Q17E
Show that for any problem
Q18E
Show that if
Q19E
Akiteis a graph on an even number of vertices, say 2n, in which of the vertices form a clique and the remaining vertices are connected in a “tail” that consists of a path joined to one of the vertices of the clique. Given a graph and a goal , the KITE problem asks for a subgraph which is a kite and which contains 2g nodes. Prove that KITE is NP-complete.
Q.1E
Optimization versus search.Recall the traveling salesman problem:
TSP
Input: A matrix of distances; a budget b
Output: A tour which passes through all the cities and has
The optimization version of this problem asks directly for the shortest tour.
TSP-OPT
Input:A matrix of distances
Output:The shortest tour which passes through all the cities.
Show that if TSP can be solved in polynomial time, then so can TSP-OPT.