最短路径问题Shortest-Paths Problem

Single-Source Shortest-Paths Problem on a weighted graph G=(V, E)

主要学习了《Introduction to Algorithms》3rd,24章

1)Dijkstra Algorithm
all edges weights are nonnegative, w(u, v) >= 0 for each edge (u, v) ∈ E
「松弛Relaxation」, approximation to the correct distance is gradually replaced by more accurate values until eventually reaching the optimum solution.
(from wiki)
这里写图片描述

DIJKSTRA(G, w, s) – Graph, weight, source vertex
weight可以用「Adjacency LinkList」「Adjacency Matrix」表征

INITIALIZE-SINGLE-SOURCE(G, s)
S = ∅       // 空集,算法意义上指源点到所有顶点的距离正无穷
Q = G.V     // Queue,未处理的目标顶点序列
while(Q ≠ ∅)    // 1...|V|
    u = EXTRACT-MIN(Q)    // 选取总距离最近的顶点,O(V) for array
    S = S ∪ u
    for each vertex v ∈ G.adj[u]  // totally E times operation
        RELAX(u, v, w)    // 更新到“新”邻接顶点的最短总距离

都以「BFS」为基底,与Prim有些像
「Prim」不断拓展并候选邻接点,比较并选取到临点最轻的边
「Dijkstra」不断拓展并候选邻接点,比较并更新总距离,选取最近的点

The running time of Dijkstra algorithm depends on how we implement the 「Min-Priority Queue」.
*「Array」, O(V^2 + E) = O(V^2)
「Min-Priority Queue with a binary min-heap」, O((V+E)lgV) = O(ElgV)
「Min-Priority Queue with a Fibonacci heap」, O(VlgV + E)

猴子也能懂:目标宏远,步步为营

2)Bellman-Ford Algorithm
slower than Dijkstra, capable of handling negative weights
「Relaxation」

https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford_algorithm
Dijkstra’s algorithm uses a priority queue to greedily select the closest vertex that has not yet been processed, and performs this relaxation process on all of its outgoing edges; by contrast, the Bellman–Ford algorithm simply relaxes all the edges, and does this |V|-1 times, where |V| is the number of vertices in the graph.

(from book)
这里写图片描述

BELLMAN-FORD(G, w, s)

INITIALIZE-SINGLE-SOURCE(G, s) // 初始依然是距离所有其他顶点正无穷
for i = 1 to |G.V| - 1         // 所有顶点扫一遍,进行核心松弛计算
    for each edge(u, v) ∈ G.E  // 每次对全边做优化...第一次一定是源的邻接顶点变得可计算...第二次逐渐多起来
        RELAX(u, v, w)         // 如果此边的u.d+w(u,v)<v.d,则更新
for each edge(u, v) ∈ G.E      // 负环校验
    if v.d > u.d + w(u, v)     // 扫了辣么多次,这式子还能成立!?
        return false           // --只可能是负环(有负权边的死循环)
return true

猴子也能懂:刷的飞起,负环狗带

O(VE), number of vertices and edges respectively

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Practice 1 Date: Monday, March 18th, 2013 We highly encourage being environment friendly and trying all problems on your own. Implement exercise 2.3-7. Implement priority queue. Implement Quicksort and answer the following questions. (1) How many comparisons will Quicksort do on a list of n elements that all have the same value? (2) What are the maximum and minimum number of comparisons will Quicksort do on a list of n elements, give an instance for maximum and minimum case respectively. Give a divide and conquer algorithm for the following problem: you are given two sorted lists of size m and n, and are allowed unit time access to the ith element of each list. Give an O(lg m + lgn) time algorithm for computing the kth largest element in the union of the two lists. (For simplicity, you can assume that the elements of the two lists are distinct). Practice 2 Date: Monday, April 1st, 2013 We highly encourage being environment friendly and trying all problems on your own. Matrix-chain product. The following are some instances. Longest Common Subsequence (LCS). The following are some instances. X: xzyzzyx Y: zxyyzxz X:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCALLAAQANKESSSESFISRLLAIVAD Y:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCTLLAAQANKENSNESFISRLLAIVAG Longest Common Substring. The following are some instances. X: xzyzzyx Y: zxyyzxz X:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCALLAAQANKESSSESFISRLLAIVAD Y:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCTLLAAQANKENSNESFISRLLAIVAG Max Sum. The following is an instance. (-2,11,-4,13,-5,-2) Shortest path in multistage graphs. Find the shortest path from 0 to 15 for the following graph.   A multistage graph is a graph (1) G=(V,E) with V partitioned into K >= 2 disjoint subsets such that if (a,b) is in E, then a is in Vi , and b is in Vi+1 for some subsets in the partition; and (2) | V1 | = | VK | = 1.     Practice 3 Date: Monday, April 15th, 2013 We highly encourage being environment friendly and trying all problems on your own. Knapsack Problem. There are 5 items that have a value and weight list below, the knapsack can contain at most 100 Lbs. Solve the problem both as fractional knapsack and 0/1 knapsack. A simple scheduling problem. We are given jobs j1, j2… jn, all with known running times t1, t2… tn, respectively. We have a single processor. What is the best way to schedule these jobs in order to minimize the average completion time. Assume that it is a nonpreemptive scheduling: once a job is started, it must run to completion. The following is an instance. (j1, j2, j3, j4) : (15,8,3,10) Single-source shortest paths. The following is the adjacency matrix, vertex A is the source.  A B C D E A -1 3 B 3 2 2 C D 1 5 E -3 All-pairs shortest paths. The adjacency matrix is as same as that of problem 3.(Use Floyd or Johnson’s algorithm)     Practice 4 Date: Monday, May 8th, 2013 We highly encourage being environment friendly and trying all problems on your own. 0/1 Knapsack Problem. There are 5 items that have a value and weight list below, the knapsack can contain at most 100 Lbs. Solve the problem using back-tracking algorithm and try to draw the tree generated. Solve the 8-Queen problem using back-tracking algorithm.    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值