Supriya Ghosh (Editor)

Held–Karp algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The Held–Karp algorithm, also called Bellman–Held–Karp algorithm, is a dynamic programming algorithm proposed in 1962 independently by Bellman and by Held and Karp to solve the Traveling Salesman Problem (TSP). TSP is an extension of the Hamiltonian circuit problem. The problem can be described as: find a tour of N cities in a country (assuming all cities to be visited are reachable), the tour should (a) visit every city just once, (b) return to the starting point and (c) be of minimum distance. Broadly, the TSP is classified as symmetric travelling salesman problem (sTSP), asymmetric travelling salesman problem (aTSP), and multi-travelling salesman problem (mTSP).The mTSP is generally treated as a relaxed vehicle routing problem.

Contents

Graph model

sTSP: Let V = {v1 ,..., vn } be a set of cities, E = {( r, s ) : r, sV } be the edge set, and drs = dsr be a cost measure associated with edge ( r, s ) ∈ E.

aTSP: If drsdsr for at least one ( r, s ) then the sTSP becomes an aTSP. The aTSP and sTSP are defined on different graphs – complete directed and undirected. sTSP can be considered, in many cases, as a subproblem of the aTSP.

mTSP: The mTSP is defined as: In a given set of nodes, let there are m salesmen located at a single depot node. The remaining nodes (cities) that are to be visited are intermediate nodes. Then, the mTSP consists of finding tours for all m salesmen, who all start and end at the depot, such that each intermediate node is visited exactly once and the total cost of visiting all nodes is minimized.

Description

Below is the dynamic programming procedure:

There is an optimization property for TSP:

Every subpath of a path of minimum distance is itself of minimum distance.

Compute the solutions of all subproblems starting with the smallest. Whenever computing a solution requires solutions for smaller problems using the above recursive equations, look up these solutions which are already computed. To compute a minimum distance tour, use the final equation to generate the 1st node, and repeat for the other nodes. For this problem, we cannot know which subproblems we need to solve, so we solve them all.

Recursive formulation

Number the cities 1, 2, . . . , N and assume we start at city 1, and the distance between city i and city j is dij. Consider subsets S ⊆ {2, . . . , N} of cities and, for cS, let D(S, c) be the minimum distance, starting at city 1, visiting all cities in S and finishing at city c.

First phase: if S = {c}, then D(S, c) = d1,c. Otherwise: D(S, c) = minxSc (D(Sc, x) + dx,c ).

Second phase: the minimum distance for a complete tour of all cities is M = minc∈{2,...,N} (D({2, . . . , N}, c) + dc,1 )

A tour n1 , . . ., nN is of minimum distance just when it satisfies M = D({2, . . . , N}, nN ) + dnN,1 .

Example

Distance matrix:

C = ( 0 2 9 10 1 0 6 4 15 7 0 8 6 3 12 0 )

Functions description:

  • g(x, S) - starting from 1, path min cost ends at vertex x, passing vertices in set S exactly once
  • cxy - edge cost ends at x from y
  • p(x, S) - the second-to-last vertex to x from set S. Used for constructing the TSP path back at the end.

  • k = 0, null set:

    Set ∅:

    g(2, ∅) = c21 = 1 g(3, ∅) = c31 = 15 g(4, ∅) = c41 = 6

    k = 1, consider sets of 1 element:

    Set {2}:

    g(3,{2}) = c32 + g(2, ∅ ) = c32 + c21 = 7 + 1 = 8 p(3,{2}) = 2 g(4,{2}) = c42 + g(2, ∅ ) = c42 + c21 = 3 + 1 = 4 p(4,{2}) = 2

    Set {3}:

    g(2,{3}) = c23 + g(3, ∅ ) = c23 + c31 = 6 + 15 = 21 p(2,{3}) = 3 g(4,{3}) = c43 + g(3, ∅ ) = c43 + c31 = 12 + 15 = 27 p(4,{3}) = 3

    Set {4}:

    g(2,{4}) = c24 + g(4, ∅ ) = c24 + c41 = 4 + 6 = 10 p(2,{4}) = 4 g(3,{4}) = c34 + g(4, ∅ ) = c34 + c41 = 8 + 6 = 14 p(3,{4}) = 4

    k = 2, consider sets of 2 elements:

    Set {2,3}:

    g(4,{2,3}) = min {c42 + g(2,{3}), c43 + g(3,{2})} = min {3+21, 12+8}= min {24, 20}= 20 p(4,{2,3}) = 3

    Set {2,4}:

    g(3,{2,4}) = min {c32 + g(2,{4}), c34 + g(4,{2})} = min {7+10, 8+4}= min {17, 12} = 12 p(3,{2,4}) = 4

    Set {3,4}:

    g(2,{3,4}) = min {c23 + g(3,{4}), c24 + g(4,{3})} = min {6+14, 4+27}= min {20, 31}= 20 p(2,{3,4}) = 3

    Length of an optimal tour:

    f = g(1,{2,3,4}) = min { c12 + g(2,{3,4}), c13 + g(3,{2,4}), c14 + g(4,{2,3}) } = min {2 + 20, 9 + 12, 10 + 20} = min {22, 21, 30} = 21

    Successor of node 1: p(1,{2,3,4}) = 3

    Successor of node 3: p(3, {2,4}) = 4

    Successor of node 4: p(4, {2}) = 2

    Backtracking the optimal TSP tour reaches: 1 → 3 → 4 → 2 → 1

    Pseudocode

    function algorithm TSP (G, n) for k := 2 to n do C({1, k}, k) := d1,k end for for s := 3 to n do for all S ⊆ {1, 2, . . . , n}, |S| = s do for all k ∈ S do {C(S, k) = minm≠1,m≠k,m∈S [C(S − {k}, m) + dm,k ]} end for end for end for opt := mink≠1 [C({2, 3, . . . , n}, k) + dk,1] return (opt) end

    Exhaustive enumeration

    This brute-force method starting at any city, enumerate all possible permutations of cities to visit, and find the distance of each permutation and choose one of minimum distance. The total number of possible routes covering all N cities can be given as (N − 1)! and (N − 1)!/2 in aTSP and sTSP respectively. Stirling's approximation: N ! 2 π N ( N e ) N

    Dynamic programming approach

    Faster than the exhaustive enumeration but still exponential, and the drawback of this algorithm, though, is that it also uses a lot of space: the worst-case time complexity of this algorithm is O ( 2 n n 2 ) and the space O ( 2 n n ) .

    Time: the fundamental operations employed in the computation are additions and comparisons. The number of each in the first phase is given by ( k = 2 n 1 k ( k 1 ) ( n 1 k ) ) + ( n 1 ) = ( n 1 ) ( n 2 ) 2 n 3 + ( n 1 )

    and the number of occurrence of each in the second phase is k = 2 n 1 k = n ( n 1 ) 2 1

    Space: ( k = 2 n 1 k ( n 1 k ) ) + ( n 1 ) = ( n 1 ) 2 n 2

    Precise algorithm for solving the TSP

    Besides Dynamic Programming, Linear programming and Branch-bound algorithm are precise algorithms that can solve TSP. Linear programming applies to the cutting plane method in the integer programming, i.e. solving the LP formed by two constraints in the model and then seeking the cutting plane by adding inequality constraint to gradually converge at an optimal solution. When people apply this method to find a cutting plane, they often depend on experience. So this method is seldom deemed as a general method.

    Branch-bound algorithm is a search algorithm widely used, although it's not good for solving the large-scale problem. It controls the searching process through effective restrictive boundary so that it can search for the optimal solution branch from the space state tree to find an optimal solution as soon as possible. The key point of this algorithm is the choice of the restrictive boundary. Different restrictive boundaries may form different branch-bound algorithms.

    Approximate algorithm for solving the TSP

    As the application of precise algorithm to solve problem is very limited, we often use approximate algorithm or heuristic algorithm. The result of the algorithm can be assessed by C / C* ≤ ε . C is the total travelling distance generated from approximate algorithm; C* is the optimal travelling distance; ε is the upper limit for the ratio of the total travelling distance of approximate solution to optimal solution under the worst condition. The value of ε >1.0. The more it closes to 1.0, the better the algorithm is. These algorithms include: Interpolation algorithm, Nearest neighbour algorithm, Clark & Wright algorithm, Double spanning tree algorithm, Christofides algorithm, Hybrid algorithm, Probabilistic algorithm.

    References

    Held–Karp algorithm Wikipedia