How can I use the A star algorithm to find the first 100 shortest paths?
|
|
The problem of finding k'th shortest path is NP-Hard, so any modification to A-Star that will do what you are after - will be exponential in the size of the input. Proof:
The maximal number of paths is From this we can conclude, that unless P=NP (and it is very unlikely according to most CS researchers), the problem cannot be solved polynomially. An alternative is using a variation of Uniform Cost Search without maintaining |
|||||||||
|
|
Besides of this problem being First of all, the algorithm keeps at every step only the best path so far. Consider the following Graph:
Assume distances When visiting C you will pick the path via But, secondly, you don't even consider every path possible, assume the following graph:
Assume distances Thirdly, you'd have to incorporate loops and cul-de-sacs's , because yes, it is perfectly possible that a path with a loop in it ends up being one of your 100 shortest paths. You'd of course might want to constraint this away, but it is a generic possibility. Consider for example graphs like this:
It's clear you can easily start looping here, unless you disallow 'going back' (e.g. forbid And now I'm probably even forgetting some issues. Note that most of these things make it also very hard to develop a generic algorithm, certainly the last part because with loops it is hard to constrain your number of possible paths ('endless loop'). |
||||
|
|
|
Use a* search, when the destination is k-th time pushing into the queue. It would be the k-th shortest path. |
|||||||||||||
|