I read this article, it suggests (page 1025 last paragraph) that there is a polynomial time algorithm to find the optimum of a k-tsp problem using binary search. Using binary search would suggest there exists an algorithm for checking if a solution exists with cost<X and this algorithm is used for the binary search. I 'googled' around for this and the only algorithm i could find was a non deterministic one (which is pretty trivial), but obviously i'm looking for a deterministic one.

I am interested in this for learning purposes,

Any help/links would be appreciated.

EDIT

I am referring to finding the value of the optimal solution and not about finding the solution itself.

link|improve this question

3  
You need to start accepting answers to previous questions, as a low accept rate tends to put off people from bothering to answer. Thinking they will get no credit for the effort they put in. – Phil Wright Dec 22 '11 at 5:41
I guess your right but I upvote any answer which is in anyway helpful and only mark as a correct answer an answer i think it fully addresses the problem. Obviously i thank any person who takes the time to help as i hope when i try and help that is appreciated. What do you think? – Daniel Dec 22 '11 at 6:27
Isn't TSP a special case of k-TSP where k = number of nodes in the graph? – soulcheck Dec 22 '11 at 9:31
@soulcheck: yes that is true – Daniel Dec 22 '11 at 9:37
feedback

1 Answer

up vote 1 down vote accepted

Since TSP is a special case of k-TSP where k = number of nodes in the graph. If you had a solution for "what's the cheapest k-TSP route" in polynomial in relation to graph size, then you'd have a polynomial solution to decision problem version of TSP which would imply that P = NP.

So the answer is no. Deterministic polynomial algorithm for both decision problem and optimization version (they're essentially the same) of k-TSP doesn't exist (yet).

link|improve this answer
I'm asking about finding what the 'optimal solution' value is, not about finding the actual optimal solution. so your argument does not apply to that. – Daniel Dec 22 '11 at 11:25
1  
@Daniel it's a decision problem version of the TSP. If you had an answer to the question "what's the cheapest TSP route in a graph" you'd have an answer to "if there exists a TSP route that's cheaper than x". Edited the answer to reflect it better. – soulcheck Dec 22 '11 at 11:37
that is true. but the opposite is not (unless i'm missing something) if i know what the value of the optimal solution is that does not mean i know the actual solution. – Daniel Dec 22 '11 at 20:26
@Daniel yes. You don't need the actual solution in decision problem version of TSP. You just need the answer if there exists a route cheaper than X (which effectively can answer what the cheapest route value is, using binary search). If you could answer that in P for k-TSP, you'd have it for TSP and if so P would have to be NP. – soulcheck Dec 22 '11 at 20:46
thanks, i was not aware the decision version was also NP complete. But this means i don't understand what binary search in the article i referenced means. – Daniel Dec 23 '11 at 7:57
feedback

Your Answer

 
or
required, but never shown

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