Euclidian TSP
The Euclidean Traveling Salesman Problem (Euclidean TSP) is a special case of the symmetric TSP where each city corresponds to a point in $\mathbb{R}^d$ and the cost $c_{ij}$ of traveling between cities $i$ and $j$ equals the Euclidean distance between their coordinates.
As the Euclidean distance is symmetric and satisfies the triangle inequality, Euclidean TSP is a special case of Metric TSP, allowing approximation algorithms to be used for a solution.
Consider the Euclidean TSP on 5 cities, located at
A(0, 0)
B(2, 0)
C(2, 1)
D(0, 1)
E(1, 1)
Which of the following statements is true?
a) The optimal tour is achieved by ABCED, costing approximately 5.
b) Any Euclidean TSP can be solved in Polynomial time using the ILP formulation.
c) The Nearest Neighbor heuristic starting from any node always yields a tour of cost 6.
d) The Cheapest Insertion heuristic is better than the Nearest Neighbor for any starting single-node cycle.
e) None of above
Original Idea: Daniel Gardin
Comments
Post a Comment