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 costs equal the Euclidean distance between points. 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 in \(\mathbb{R}^2\) at
A (0, 0); B (2, 0); C (2, 1); D (0, 1); E (1, 1).
Which of the following statements is true?
- The Nearest Neighbor heuristic starting from any node always yields a tour of cost 6.
- Any Euclidean TSP can be solved in polynomial time using the ILP formulation.
- The optimal tour is achieved by ABCED, costing 5.
- The Cheapest Insertion heuristic is better than the Nearest Neighbor for any starting single-node cycle.
- None of the above
Original idea by: Daniel Gardin
No comments:
Post a Comment