Chapter 9: Q10E (page 308)
Let us call a local search algorithm exact when it always produces the optimum solution. For example, the local search algorithm for the minimum spanning tree problem introduced in Problem 9.5 is exact. For another example, simplex can be considered an exact local search algorithm for linear programming.
(a) Show that the2- change local search algorithm for the TSP is not exact.
(b) Repeat for the - change local search algorithm, where is the number of cities.
(c) Show that -change local search algorithm is exact.
(d) If A is a optimization problem, define A-IMPROVEMENT to be the following search problem: Given an instancexof A and a solutionsof A, find another solution ofxwith better cost ( or report that none exists, and thus is optimum). For example, in TSP IMPROVEMENT we are given a distance matrix and a tour, and we are asked to find a better tour. It turns out that TSP IMPROVEMENT is NP-complete, and so is SET COVER IMPROVEMENT. (Can you prove this?).
(e) We say that a local search algorithm has polynomial iterationif each execution of the loop requires polynomial time. For example, the obvious implementation of the -change local search algorithm for the TSP defined above does not have polynomial iteration. Show that, unless , there is no exact local search algorithm with polynomial iteration for the TSP and SET COVER problems.
Short Answer
(a) The 2-change local algorithm for TSP is not exact.
(b) -change local search algorithm is not exact.
(c) -change local search algorithm is exact.
(d) TSP IMPROVEMENT is NP-complete and SET COVER IMPROVEMENT is also NP-complete.
(e)Unless p = NP , there is no exact local search algorithm with polynomial iteration for the TSP and SET COVER problems.