In this earlier question the OP asked how to find a shortest path in a graph that goes from u to v and also passes through some node w. The accepted answer, which is quite good, was to run Dijkstra's algorithm twice - once to get from u to w and once to get from w to v. This has time complexity equal to two calls to Dijkstra's algorithm, which is O(m + n log n).

Now consider a related question - you are given a sequence of nodes u1, u2, ..., uk and want to find the shortest path from u1 to uk such that the path passes through u1, u2, ..., uk in order. Clearly this could be done by running k-1 instances of Dijkstra's algorithm, one for each pair of adjacent vertices, then concatenating the shortest paths together. This takes time O(km + k n log n). Alternatively, you could use an all-pairs shortest paths algorithm like Johnson's algorithm to compute all shortest paths, then concatenate the appropriate shortest paths together in O(mn + n2 log n) time, which is good for k much larger than n.

My question is whether there is an algorithm for solving this problem that is faster than the above approaches when k is small. Does such an algorithm exist? Or is iterated Dijkstra's as good as it gets?

Thanks!

link|improve this question

This sounds like an instance of the Travelling Salesman Problem en.wikipedia.org/wiki/Travelling_salesman_problem – SauceMaster Sep 6 '11 at 3:55
3  
@SauceMaster- This isn't quite TSP because we are allowed to revisit nodes and because the order of the nodes is specified. But thanks! – templatetypedef Sep 6 '11 at 3:58
@templatetypdef: Agreed. Similar but not the same. – SauceMaster Sep 6 '11 at 4:08
I am skeptical that such an algorithm exists. Perhaps try cstheory.stackexchange? – rrenaud Sep 6 '11 at 4:23
1  
k can not be much larger than n – Saeed Amiri Sep 6 '11 at 5:21
show 10 more comments
feedback

3 Answers

Rather than running isolated instances of Dijkstra's algorithm to find the paths u(k) -> u(k+1) one path at a time, can a single instance of a modified Dijkstra-like search be started at each node in the sequence simultaneously, with the paths formed when search regions meet "in-the-middle".

This would potentially cut down on the total number of edges visited and reduce re-traversal of edges compared to making a series of isolated calls to Dijkstra's algorithm.

An easy example would be finding the path between two nodes. It would be better to expand the search regions about both nodes than just expanding about one. In the case of a uniform graph, the second option would give a search region with radius equal to the distance between the nodes, the first option would give two regions of half the radius - less overall search area.

Just a thought.

EDIT: I guess I'm talking about a multi-directional variant of a bi-directional search, with as many directions as there are nodes in the sequence {u(1), u(2), ..., u(m)}.

link|improve this answer
3  
bi directional search fails when it comes to weighted edges. consider the following: (1)-(2)-(3)-(4)-(5) every edge's weight is 1, and an extra edge (1)-(5), weighted 3. the shortest path from 1 to 5 is using (1)-(5), but bi-directional search will give you 4, since it will first find 1->2->3 and 3->4->5. – amit Sep 6 '11 at 7:05
@amit: I think you might be right... – Darren Engwirda Sep 6 '11 at 9:04
feedback

I don't see how we can do too much better, here's all I can think of. Assuming the graph is undirected, the shortest path from any node u to node v would be the same as that from v to u (in reverse of course).

Now, for your case of a shortest path in the order u1 u2 u3.. un, we could run Djikstra's algorithm on u2 (and find the shortest paths u1-u2, u2-u3 in one run), then on u4 (for u3-u4 and u4-u5), then u6.. and so on. This reduces the number of times you apply Djikstra's by roughly a half. Note that complexity wise, this is identical to the original solution.

link|improve this answer
Nice approach. any idea/thought how to apply it for directed graphs? – amit Sep 6 '11 at 17:13
@kyun, amit:I think you can generalise this approach. For undirected graphs you could keep a count of the number of times each node occurs in the set of (currently) un-traversed paths, and start Dijkstra's from the node with the highest count to find adjacent paths. This should account for cases where nodes appear in more than 2 paths. For directed graphs you could keep a count of the numbers of times each node appears as the origin of a path in the un-traversed set, and follow the same approach. – Darren Engwirda Sep 7 '11 at 1:27
feedback

Looking at your problem from a divide-and-conquer perspective, given graph G with n nodes, k of which [1<=k<=n] we want to traverse in order from 1-k (i1,i2,...,ik),

Let's say f(j) is the shortest path from i1 to ij. The problem nicely subdivides (you already see where this is going) into smaller instances of finding shortest paths, eventually turning into summation of f(j) as j goes from 1 to k. Therefore, your problem is minimum bounded by k-1 iterations of Djikstra's algorithm. The only way to improve it would be to find a faster algorithm than Djikstra's to discover the shortest path between 2 points.

At least that's my take on it. /grad student

link|improve this answer
1  
Theoretically, there might be an algorithm that uses sqrt(k) [for example] times dijkstra, which will make a good solution for this problem, without finding better shortest path algorithm then dijkstra's. – amit Sep 6 '11 at 8:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.