WEEK 10
6.5 Network Flow Problems
- Determine the maximum amount of flow that can pass from to .
Note : Total coming in () = Total going out () where
A Simple Algorithm
- 流图表示算法的任意阶段已经达到的流,开始时的所有边都没有流,算法终止时包含最大流
- 残余图(residual graph)表示对于每条边还能添加上多少流,的边叫做残余边(residual edge)
Step 1 : Find any path from to in , which is called augmenting path(增长通路).
Step 2 : Take the minimum edge on this path as the amount of flow and add to .
Step 3 : Update and remove the 0 flow edges.
Step 4 : If there is a path from to in then go to Step 1, or end the algorithm.
- Step 1中初始选择的路径可能使算法不能找到最优解,贪心算法行不通
A solution
- allow the algorithm to undo its decisions
- For each edge with flow in , add an edge with flow in .
Note : The algorithm works for with cycles as well.
[Proposition] If the edge capabilities are rational numbers, this algorithm always terminate with a maximum flow.
Analysis
-
An augmenting path can be found by an unweighted shortest path algorithm.
-
where is the maximum flow.
-
Always choose the augmenting path that allows the largest increase in flow
-
对Dijkstra算法进行单线(single-line)修改来寻找增长通路
- 为最大边容量
- 条增长通路将足以找到最大流,对于增长通路的每次计算需要时间
$$ T=T_{augmentation}\times T_{find_a_path}\ =O(|E|\log cap_{max})\times O(|E|\log|V|)\ =O(|E|^2\log|V|\log cap_{max}) $$
-
Always choose the augmenting path that has the least number of edges
-
使用无权最短路算法来寻找增长路径
$$ T=T_{augmentation}\times T_{find_a_path}\ =O(|E||V|)\times O(|E|)\ =O(|E|^2|V|) $$
Note :
- If every has either a single incoming edge of capacity 1 or a single outgoing edge of capacity 1, then time bound is reduced to .
- The min-cost flow problem is to find, among all maximum flows, the one flow of minimum cost provided that each edge has a cost per unit of flow.
6.6 Minimum Spanning Tree
[Definition] A spanning tree of a graph is a tree which consists of and a subset of
Note :
- The minimum spanning tree is a tree since it is acyclic, the number of edges is
- It is minimum for the total cost of edges is minimized.
- It is spanning because it covers every vertex.
- A minimum spanning tree exists if is connected.
- Adding a non-tree edge to a spanning tree, we obtain a cycle.
Greedy Method
Make the best decision for each stage, under the following constrains :
- we must use only edges within the graph
- we must use exactly edges
- we may not use edges that would produce a cycle
-
Prim’s Algorithm
-
在算法的任一时刻,都可以看到一个已经添加到树上的顶点集,而其余顶点尚未加到这棵树中
-
算法在每一阶段都可以通过选择边,使得的值是所有 在树上但不在树上的边的值中的最小者,而找出一个新的顶点并把它添加到这棵树中
-
Kruskal’s Algorithm
-
连续地按照最小的权选择边,,并且当所选的边不产生环时就把它作为取定的边