Javatpoint Logo
Javatpoint Logo

Travelling Sales Person Problem

The traveling salesman problems abide by a salesman and a set of cities. The salesman has to visit every one of the cities starting from a certain one (e.g., the hometown) and to return to the same city. The challenge of the problem is that the traveling salesman needs to minimize the total length of the trip.

Suppose the cities are x1 x2..... xn where cost cij denotes the cost of travelling from city xi to xj. The travelling salesperson problem is to find a route starting and ending at x1 that will take in all cities with the minimum cost.

Example: A newspaper agent daily drops the newspaper to the area assigned in such a manner that he has to cover all the houses in the respective area with minimum travel cost. Compute the minimum travel cost.

The area assigned to the agent where he has to drop the newspaper is shown in fig:

Travelling Sales Person Problem

Solution: The cost- adjacency matrix of graph G is as follows:

costij =

Travelling Sales Person Problem

The tour starts from area H1 and then select the minimum cost area reachable from H1.

Travelling Sales Person Problem

Mark area H6 because it is the minimum cost area reachable from H1 and then select minimum cost area reachable from H6.

Travelling Sales Person Problem

Mark area H7 because it is the minimum cost area reachable from H6 and then select minimum cost area reachable from H7.

Travelling Sales Person Problem

Mark area H8 because it is the minimum cost area reachable from H8.

Travelling Sales Person Problem

Mark area H5 because it is the minimum cost area reachable from H5.

Travelling Sales Person Problem

Mark area H2 because it is the minimum cost area reachable from H2.

Travelling Sales Person Problem

Mark area H3 because it is the minimum cost area reachable from H3.

Travelling Sales Person Problem

Mark area H4 and then select the minimum cost area reachable from H4 it is H1.So, using the greedy strategy, we get the following.

4    3    2    4    3    2   1    6
H1 → H6 → H7 → H8 → H5 → H2 → H3 → H4H1.

Thus the minimum travel cost = 4 + 3 + 2 + 4 + 3 + 2 + 1 + 6 = 25

Matroids:

A matroid is an ordered pair M(S, I) satisfying the following conditions:

  1. S is a finite set.
  2. I is a nonempty family of subsets of S, called the independent subsets of S, such that if B ∈ I and A ∈ I. We say that I is hereditary if it satisfies this property. Note that the empty set ∅ is necessarily a member of I.
  3. If A ∈ I, B ∈ I and |A| <|B|, then there is some element x ∈ B ? A such that A∪{x}∈I. We say that M satisfies the exchange property.

We say that a matroid M (S, I) is weighted if there is an associated weight function w that assigns a strictly positive weight w (x) to each element x ∈ S. The weight function w extends to a subset of S by summation:

w (A) = ∑x∈A w(x)

for any A ∈ S.






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA