Since last 2 days,i'm trying to find some logic for calculating longest path in graph.I know i can find it easily for DAGs and in general it is polynomial time algorithm.Formally,I want to implement heuristic for computing longest path,morever,if probability p is given with which an edge is present in graph,how can we solve the problem..help...
|
|
Invert the weights of the paths and run a shortest path algorithm. The lowest number you get (most negative) is the longest path. |
|||||||||
|
|
Dijkstra's can't be used on graphs with negative weights - Wiki article on Dijkstra's
So you can't negate all edge weights and use Dijkstra's, what you can do is negate all edge weights and use Bellman-Ford algorithm - Wiki article on Bellman-Ford
EDIT: The shortest path (with the most negative value) is then the longest path in your original graph. NOTE: if you have positive cycles in your graph, you will not find a solution since the longest path doesn't exist in such a graph. |
||||
|
|
|
I'm not entirely sure if I understand the question, but would a twist on Dijkstra's algorithm work? Just make it calculate the longest path instead of the shortest. I apologize if this was of no value to you. Check it out: http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm |
|||
|
|
|
You could always just use a breadth first search (BFS) and, whenever you are adding an edge to the graph you have it's cost as the additive inverse (multiply it be -1). This way you are finding the 'shortest path' by using the longest edges. Because you're doing a scalar transform, you're not losing the ability to add within the group (which you do lose if you use the multiplicative inverse). |
|||||||||
|