Find shortest path from Vertex u to v passing thro

2019-04-07 11:59发布

In a directed graph with non-negative edge weights I can easily find shortest path from u to v using dijkstra's. But is there any simple tweak to Dijkstra's so that I can find shortest path from u to v through a given vertex w. Or any other algorithm suggestions?

5条回答
女痞
2楼-- · 2019-04-07 12:44

Looks like finding u to w and then finding w to v, concatenating both results. Would it work?

查看更多
Luminary・发光体
3楼-- · 2019-04-07 12:52
  1. Find shortest path from u to w
  2. Find shortest path from w to v

Then u->w->v is the shortest path.

You can do it by running Dijkstra for two times, but you can also apply the Floyd-Warshall algorithm.

查看更多
ら.Afraid
4楼-- · 2019-04-07 12:54

Find the shortest path from u to w, then the shortest path from w to v.

查看更多
啃猪蹄的小仙女
5楼-- · 2019-04-07 12:57

Using the following approach we could run the algorithm just once:

set v_visisted = false
    Start from w and find shortest path to u
    if v was visited during shortest path search to u, set v_visted = true
    If v is part of shortest path from w->u then
          exit with result ( # the path would be u->v->w->v ) 
       else
           if v_visited= true then we already know values for w->v. We have a solution.
           else save path from w->v and switch u to source and find shortest path to v.

Note that running the shortest path from u to v is effectively continuing the algo's first run. Therefore, we are running the algo just once, by tracking if we visited 'v'.

查看更多
Bombasti
6楼-- · 2019-04-07 13:01

This problem is NP-hard, so finding a polynomial time solution is unlikely. See this cstheory post for more details.

查看更多
登录 后发表回答