I'm working on this problem:

TSP:
Input: A matrix of distances; a budget b
Output: A tour which passes through all the cities and has length <= b, 
if such a tour exists.

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.

Now, the first thing that jumps to mind is that if I knew the cost of the optimal solution, I could just set b to that and voila. And, wouldn't you know it, elsewhere in my book it contains a hint for this very problem:

How do we find the optimum cost? Easy: by binary search.

I think I might be misunderstanding something very badly here. Binary search is meant to find the position of a given item in a sorted list. How exactly could that help me find the optimal cost? I'm genuinely confused. The authors don't elaborate any further, unfortunately.

The only other thing I might think of to solve this problem is to prove that they both reduce to another problem that is NP-complete, which I may end up doing, but still... this bugs me.

link|improve this question
It might help if you told us what the textbook is. – Paul Johnson Dec 8 '10 at 7:31
2  
Interestingly, cseweb.ucsd.edu/classes/wi08/cse101/hw/hw7soln.pdf has a rather clear explanation. (which also covers why the binary search does not result in a pseudo-polynomial time algorithm). – lijie Dec 8 '10 at 10:54
1  
@j_random_hacker: I believe that the term "resolution of the min-edge" is actually "resolution of the representation of the edge weights" (otherwise, the point about representing K with logK bits is not going to make sense). If the weights are real numbers, then a binary search might not work, and I can't really think of how to make it work unless TSP actually searches for a tour of length < (strictly) b. – lijie Dec 8 '10 at 14:38
1  
Even a floating point number has a minimum (non zero) resolution (corresponding to the smallest denormalized number), and with some minimum resolution, the argument still stands (the number of steps just increases by a constant factor -- basically the logarithm is taken to a different base), so it is still an acceptable method. Note that the argument doesn't assume a particular maximum edge weight (it just assumes a finite maximum edge weight). – lijie Dec 8 '10 at 15:25
1  
ah! that makes sense. so it is due to the fact that using a floating point representation causes the maximum representable number of length n to be of the form k^(k^n) instead of k^n. ok agreed. and my comment 3 comments ago was wrong. this assumes sums are represented to a higher precision than edge weights. if we also have to represent sums using the same representation, hand-wavily, it feels that a variant of binary search where the representation space is split evenly would still work. – lijie Dec 8 '10 at 17:31
show 5 more comments
feedback

1 Answer

up vote 2 down vote accepted

Assume that you have some lower bound l (e.g. 0) and upper bound u (e.g. the sum of all the edge weights). First, attempt to find a solution of total cost <= (l+u)/2. If you succeed, try again for a lower value: (3l+u)/4; if not, try for a higher value: (l+3u)/4.

I would call this a bisection method (Wikipedia) rather than binary search, but the idea is the same. We want to search some range for the optimal value, so we start in the middle and move up if we're too low and down if we're too high.

link|improve this answer
+1 but I'm not yet convinced about the stopping criteria for the bisection. As I said in a comment to lijie, the argument advanced in his linked PDF does not show that it's sufficient to stop when the difference is smaller than the minimum edge length in the graph. (That may in fact be a sufficient condition for correctness, but that argument doesn't prove it.) – j_random_hacker Dec 8 '10 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.