vote up 0 vote down star

We were discussing this problem in class, and were unable to come up with a solution I found satisfying.

The problem: Find the shortest path through a graph in efficient time, with the additional constraint that the path must contain exactly n nodes.

We have a directed, weighted graph. It may, or may not contain a loop. We can easily find the shortest path using Dijkstra's algorithm, but Dijkstra's makes no guarantee about the number of edges.

The best we could come up with was to keep a list of the best n paths to a node, but this uses a huge amount of memory over vanilla Dijkstra's.

flag
This was an in-class example for Zhe Dang's Algorithms class, it was not assigned as homework. I just thought it was an interesting problem. – Phill Nov 6 at 20:54
I don't think you can satisfy both "shortest path" and "a fixed number of edges" constraints. – Nick D Nov 6 at 21:00
It think it means that "of the paths that contain exactly n nodes, find the shortest". Note that there may not be an answer (e.g. all paths take more than n nodes). – Kathy Van Stone Nov 6 at 21:11
Nick D - read the problem as "Given the paths that have n edges, which of these has the shortest path?" It's certainly satisfiable - he's just wanting an efficient way to find it. – James Kolpack Nov 6 at 21:12
If "the path must contain exactly n nodes", then the "shortest path" will be exactly n nodes long. The way this is worded, all you have to do is find ANY path consisting of n nodes. – mbeckish Nov 6 at 21:15
show 1 more comment

3 Answers

vote up 0 vote down

The alternative that comes to my mind is a depth first search (as opposed to Dijkstra's breadth first search), modified as follows:

  • stop "depth"-ing if the required vertex count is exceeded

  • record the shortest found (thus far) path having the correct number of nodes.

Run time may be abysmal, but it should come up with the correct result while using a very reasonable amount of memory.

link|flag
vote up 0 vote down

Interesting problem. Did you discuss using a heuristic graph search (such as A*), adding a penalty for going over or under the node count? This may or may not be admissible, but if it did work, it may be more efficient than keeping a list of all the potential paths.

In fact, you may be able to use backtracking to limit the amount of memory being used for the Dijkstra variation you discussed.

link|flag
vote up 0 vote down

A rough idea of an algorithm:

Let A be the start node, and let S be a set of nodes (plus a path). The invariant is that at the end of step n, S will all nodes that are exactly n steps from A and the paths will be the shortest paths of that length. When n is 0, that set is {A (empty path)}. Given such a set at step n - 1, you get to step n by starting with an empty set S1 and

for each (node X, path P) in S
  for each edge E from X to Y in S, 
    If Y is not in S1, add (Y, P + Y) to S1
    If (Y, P1) is in S1, set the path to the shorter of P1 and P + Y

There are only n steps, and each step should take less than max(N, E), which makes the entire algorithm O(n^3) for a dense graph and O(n^2) for a sparse graph.

This algorith was taken from looking at Dijkstra's, although it is a different algorithm.

link|flag

Your Answer

Get an OpenID
or

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