Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find the shortest path in a graph which visits certain nodes

I have a undirected graph with about 100 nodes and about 200 edges. One node is labelled 'start', one is 'end', and there's about a dozen labelled 'mustpass'.

I need to find the shortest path through this graph that starts at 'start', ends at 'end', and passes through all of the 'mustpass' nodes (in any order).

( http://3e.org/local/maize-graph.png / http://3e.org/local/maize-graph.dot.txt is the graph in question - it represents a corn maze in Lancaster, PA)

like image 933
Daniel Avatar asked Oct 21 '08 16:10

Daniel


People also ask

What is the shortest path from node A to node?

However, when we start out, we do know the shortest path for one node, and one node only: why, node a , our starting node, of course! Since we start at node a , we are already there to begin with. So, the shortest distance from node a to node a is actually just 0 !

Will you use to determine the shortest path between the nodes in A graph?

When it comes to finding the shortest path in a graph, most people think of Dijkstra's algorithm (also called Dijkstra's Shortest Path First algorithm). While Dijkstra's algorithm is indeed very useful, there are simpler approaches that can be used based on the properties of the graph.

Which algorithm will you use to determine the shortest path between the nodes in A graph Mcq?

Dijkstra's algorithm is an algorithm used for finding the shortest paths between nodes or vertices in a graph.


2 Answers

Everyone else comparing this to the Travelling Salesman Problem probably hasn't read your question carefully. In TSP, the objective is to find the shortest cycle that visits all the vertices (a Hamiltonian cycle) -- it corresponds to having every node labelled 'mustpass'.

In your case, given that you have only about a dozen labelled 'mustpass', and given that 12! is rather small (479001600), you can simply try all permutations of only the 'mustpass' nodes, and look at the shortest path from 'start' to 'end' that visits the 'mustpass' nodes in that order -- it will simply be the concatenation of the shortest paths between every two consecutive nodes in that list.

In other words, first find the shortest distance between each pair of vertices (you can use Dijkstra's algorithm or others, but with those small numbers (100 nodes), even the simplest-to-code Floyd-Warshall algorithm will run in time). Then, once you have this in a table, try all permutations of your 'mustpass' nodes, and the rest.

Something like this:

//Precomputation: Find all pairs shortest paths, e.g. using Floyd-Warshall n = number of nodes for i=1 to n: for j=1 to n: d[i][j]=INF for k=1 to n:     for i=1 to n:         for j=1 to n:             d[i][j] = min(d[i][j], d[i][k] + d[k][j]) //That *really* gives the shortest distance between every pair of nodes! :-)  //Now try all permutations shortest = INF for each permutation a[1],a[2],...a[k] of the 'mustpass' nodes:     shortest = min(shortest, d['start'][a[1]]+d[a[1]][a[2]]+...+d[a[k]]['end']) print shortest 

(Of course that's not real code, and if you want the actual path you'll have to keep track of which permutation gives the shortest distance, and also what the all-pairs shortest paths are, but you get the idea.)

It will run in at most a few seconds on any reasonable language :)
[If you have n nodes and k 'mustpass' nodes, its running time is O(n3) for the Floyd-Warshall part, and O(k!n) for the all permutations part, and 100^3+(12!)(100) is practically peanuts unless you have some really restrictive constraints.]

like image 172
ShreevatsaR Avatar answered Oct 06 '22 01:10

ShreevatsaR


run Djikstra's Algorithm to find the shortest paths between all of the critical nodes (start, end, and must-pass), then a depth-first traversal should tell you the shortest path through the resulting subgraph that touches all of the nodes start ... mustpasses ... end

like image 20
Steven A. Lowe Avatar answered Oct 06 '22 00:10

Steven A. Lowe