Challenge: The Traveling Salesman Problem

In this lesson, you will solve a coding challenge on the famous traveling salesman problem.

We'll cover the following

Problem statement

You are given a map that has nn cities on it. All of the cities are connected directly to each other via distinct routes of variable lengths. You, being a salesman, have to travel to each of these cities on a business trip. But your company wants you to be very careful with the travel expenses and wants you to spend the least amount possible. Expenditure is a function of the distance traveled, so you want to minimize the total distance traveled. Find the length of the shortest path to travel all the cities.

Input

You will be given a 2-d matrix, distances, of size n×nn \times n denoting the distance between all the cities. To check the distance from ithi^{th} city to jthj^{th} city, you can simply do distances[i][j]. The matrix does not necessarily have to be symmetrical, i.e., distances[i][j] \neq distances[j][i]. You can start from any city to travel around all the other cities until you come back to the same city you started traveling from. You should not visit any city twice other than the first city.

distances = [
      [0, 10, 20],
      [12, 0, 10],
      [19, 11, 0]
]

Output

Your algorithm should return the minimum distance traveled to traverse every city; each city other than the first. The chosen city should only be traveled to once.

TSP(distances) = 39

Let’s look at the following visualization for a better understanding.

Get hands-on with 1200+ tech skills courses.