Back to the 2024 paper

Module 2: Fundamental Algorithmic Strategies

20247m

Consider a TSP with 4 cities A, B, C, D and the following distance matrix:

A B C D
A 0 10 15 20
B 10 0 35 25
C 15 35 0 30
D 20 25 30 0

Answer the following:
(i) Use the branch-and-bound algorithm to find the shortest possible route that visits all cities exactly once and returns to the starting city.
(ii) Show the branching steps and calculate lower bounds for each partial solution.
(iii) Identify how the bounding helps prune the search tree.

Similar questions