-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Travelling Salesman Problem
Problem: Given a set of cities and distance between every pair of cities, the problem is to find the shortest possible route that visits every city exactly once and returns to the starting point.

- A TSP tour in the graph is 1-2-4-3-1. The cost of the tour is 10+25+30+15 which is 80.
Reactions are currently unavailable