Is there an algorithm to solve the (time-indepenedent) TSP problem exactly (no heuristics, nodes are not points in space and costs are arbitrary) in polynomial time?

Thanks!

link|improve this question
3  
Instead of asking, you could have read the first sentence of the Wikipedia article. – Tim N Mar 25 '11 at 14:23
This probably should be moved to cstheory.stackexchange.com – Ither Mar 25 '11 at 14:23
2  
@Lther: Nope. Off topic on cstheory. – Aryabhatta Mar 25 '11 at 16:06
feedback

3 Answers

up vote 6 down vote accepted

No. It is considered NP-Hard.

If you do find one, tell me (in secret of course) and we'll be rich together :-)

I know Wikipedia can be often wrong, but you might find their page on TSP interesting:

http://en.wikipedia.org/wiki/Travelling_salesman_problem

link|improve this answer
feedback

Probably not. It is NP-hard.

link|improve this answer
feedback

If NP=P then the answer is yes, it can be done in polynomial time. If NP≠P, then the answer is no, it cannot be done in polynomial time. NP=P vs. NP≠P is an open problem, though I suspect you'll find that a representative sample of those sufficiently familiar with the issue will have more people who believe NP≠P than who believe NP=P.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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