Notions of Flow Networks and Flows
这篇随笔是对算法导论(Introduction to Algorithms, 3rd. Ed.)第26章 Maximum Flow的摘录。
------------------------------------------------------------------------------------------------------
1. A flow network G = (V, E ) is a directed graph in which each edge (u, v) ∈ E has a nonnegative capacity c(u, v) ≥ 0.
2. We further require that if E contains an edge (u, v) then there is no edge (v, u) in the reverse direction.
3. We distinguish two vertices in a flow network: a source s and a sink t.
4. If (u, v) ∉ E, then for convenience we define c (u, v) = 0, and we disallow self-loops, hence, capacity can be viewed as a function c: V × V → R.
5. A flow in G is a real-valued function f : V×V → R that satisfies the following two properties:
#Capacity constraint: For all u, v ∈ V, we require 0 ≤ f (u, v) ≤ c (u, v)
#Flow conservation: For all u ∈ V - {s, t}, we require
∑ f (v, u) : v ∈ V = ∑ f (u, v) : v ∈ V
6. The value | f | of a flow f is defined as | f | = ∑ f (s, v) - ∑ f (v, s).
7. In the maximum-flow problem, we are given a flow network G with source s and sink t, and we wish to find a flow of maximum value.
8. A cut (S, T ) of flow network G = (V, E ) is a partion of V into S and T = V - S such that s ∈ S and t ∈ T.
9. If f is a flow, then the net flow f (S, T ) across the cut (S, T ) is defined to be
f (S, T ) = ∑u∈S ∑v∈T f (u, v) - ∑u∈S ∑v∈T f (v, u).
10. The capacity of the cut (S, T) is defined to be
c (S, T ) = ∑u∈S ∑v∈T c (u, v).
11. A minimum cut of a network is a cut whose capacity is minimum over all cuts of the network.
12. Given a flow network G = (V, E ) with source s and sink t. Let f be a flow in G, and consider a pair of vertices u, v ∈ V. We difine the residual capacity (induced by f ) cf (u, v) by
cf (u, v) =
c (u, v) - f (u, v), if (u, v) ∈ E
f (u, v), if (v, u) ∈ E
0, otherwise
13. Given a flow network G = (V, E ) and a flow f, the residual network of G induced by f is Gf = (V, Ef ) where
Ef = {(u, v) ∈ V × V : cf ( u, v) > 0}
14. If f is a flow in G and f ' is a flow in the corresponding residual network Gf, we define f ↑ f ', the augmentation of flow f by f ', to be a function from V × V to R, defined by
(f ↑ f ' ) (u, v) =
f (u, v) + f ' (u, v) - f ' (v, u) if (u, v) ∈ E ,
0 otherwise .
15.(Lemma 26.1, pp. 717)
Let G = (V, E) be a flow network with source s and sink t, and let f be a flow in G . Let Gf be the residual network of G induced by f , and let f ' be a flow in Gf . Then, the function f ↑ f ' defined above is a flow in G with value | f ↑ f ' | = | f | + | f | + | f ' |.
Proof We first verify that f ↑ f ' obeys the capacity constraint for each edge in E and flow conservation at each vertex in V - {s , t}.
For the capacity constraint, first observe that if (u, v) ∈ E, then cf (v, u) = f (u, v). Therefore, we have f ' (v, u) ≤ cf (v, u) = f (u, v), and hence
( f ↑ f ' ) (u, v ) = f (u, v) + f ' (u, v) - f ' (v, u)
≥ f (u, v) + f ' (u, v) - f (u, v)
= f ' (u, v)
≥ 0 .
In addition,
(f ↑ f ') (u, v)
= f (u, v) + f ' (u, v) - f ' (v, u)
≤ f (u, v) + f ' (u, v)
≤ f (u, v) + cf (u, v)
= f (u, v) + c (u, v) - f (u, v)
= c (u, v)
For flow conservation, because both f and f ' obey flow conservation, we have that for all u ∈ V - {s, t},
∑v∈V ( f ↑ f ' ) (u, v) = ∑v∈V ( f (u, v) + f ' (u, v) - f ' (v, u))
= ∑v∈V f (u, v) + ∑v∈V f ' (u, v) - ∑v∈V f ' (v, u)
= ∑v∈V f (v, u) + ∑v∈V f ' (v, u) - ∑v∈V f ' (u, v)
= ∑v∈V ( f (v, u) + f ' (v, u) - f ' (u, v) )
= ∑v∈V ( f ↑ f ' ) (v, u) ,
where the third line follows from the second line by flow conservation.
Finally, = { v : (s, v) ∈ E} to be the set of vertices with edges from s, and V2 = {v : (v, s) ∈ E} to be the set of vertices to s. We have V1 ∪ V2 ⊆ V and, because we disallow antiparallel edges, V1 ∩ V2 = ∅. We now compute
| f ↑ f ' | = ∑v∈V ( f ↑ f ' ) (s, v) - ∑v∈V ( f ↑ f ' ) (v, s)
= ∑v∈V1 ( f ↑ f ' ) (s, v) - ∑v∈V2 ( f ↑ f ' ) (v, s) ,
where the second line follows because ( f ↑ f ' ) (w, x) is 0 if (w, x) ∉ E. We now apply the definition of f ↑ f ' to the equation above, and then reorder and group terms to abtain
| f ↑ f ' |
= ∑v∈V1 ( f (s, v) + f ' (s, v) - f ' (v, s)) - ∑v∈V2 ( f (v, s) + f ' (v, s) - f ' (s, v))
= ∑v∈V1 f (s, v) + ∑v∈V1 f ' (s, v) - ∑v∈V1 f ' (v, s)
- ∑v∈V2 f (v, s) - ∑v∈V2 f ' (v, s) + ∑v∈V2 f ' (s, v)
= ∑v∈V1 f (s, v) - ∑v∈V2 f (v, s)
+ ∑v∈V1 f ' (s, v) + ∑v∈V2 f ' (s, v) - ∑v∈V1 f ' (v, s) - ∑v∈V2 f ' (v, s)
= ∑v∈V1 f (s, v) - ∑v∈V2 f (v, s) + ∑v∈V1∪V2 f ' (s, v) - ∑v∈V1∪V2 f ' (v, s) .
= ∑v∈V f (s, v) - ∑v∈V f (v, s) + ∑v∈V f ' (s, v) - ∑v∈V f ' (v, s)
= | f | + | f ' | .
Notions of Flow Networks and Flows的更多相关文章
- Openvswitch手册(9): Flow
这一节我们将flow table flow table主要由ovs-ofctl命令操作 ovs-ofctl可以走和openflow controller一样的协议: ssl:ip[:port]: Th ...
- Spring Web Flow 入门demo(三)嵌套流程与业务结合 附源代码
上篇博客我们说Spring web Flow与业务结合的方式主要有三种,以下我们主要介绍一下第三种的应用方式 3,运行到<action-state> 元素 SpringWeb Flow 中 ...
- 网络流 HDU 3549 Flow Problem
网络流 HDU 3549 Flow Problem 题目:pid=3549">http://acm.hdu.edu.cn/showproblem.php?pid=3549 用增广路算法 ...
- flow
Flow vs Stream https://wikidiff.com/flow/stream As nouns the difference between flow and stream is t ...
- [另开新坑] 算导v3 #26 最大流 翻译
26 最大流 就像我们可以对一个路网构建一个有向图求最短路一样,我们也可以将一个有向图看成是一个"流量网络(flow network)",用它来回答关于流的问题. Just as ...
- 基于Open vSwitch的OpenFlow实践
Open vSwitch(下面简称为 OVS)是由 Nicira Networks 主导的,运行在虚拟化平台(例如 KVM,Xen)上的虚拟交换机.在虚拟化平台上,OVS 可以为动态变化的端点提供 2 ...
- Open vSwitch FAQ (一)
Basic Configuration Q: How do I configure a port as an access port? A: Add "tag=VLAN" to y ...
- SDN学习
SDN & OpenFlow & Open vSwitch SDN SDN(软件定义网络)是一个概念.是一个思想.一个框架.是一种网络设计理念,它有三个特征 控制平面与转发平面分离 控 ...
- openvswith Frequently Asked Questions
Open vSwitch <http://openvswitch.org> 参考地址:http://git.openvswitch.org/cgi-bin/gitweb.cgi?p=ope ...
随机推荐
- MYSQL密码设置
当MYSQL安装成功后,root用户的密码默认是空的,有三种方式可以重新设置root账号的密码 1.用root 进入mysql后 mysql>set password =password('你的 ...
- 本地RUN页面时候,将异常直接显示出来,而不是乱码
本地运行页面时,经常会遇到以下错误 oracle.jbo.JboException: JBO-29000: JBO-29000: JBO-26028: ???? MemberAttributesDis ...
- Caffe学习系列(15):计算图片数据的均值
图片减去均值后,再进行训练和测试,会提高速度和精度.因此,一般在各种模型中都会有这个操作. 那么这个均值怎么来的呢,实际上就是计算所有训练样本的平均值,计算出来后,保存为一个均值文件,在以后的测试中, ...
- 安卓界面篇(一) 自定义一个topbar
步骤一: 先在values 里 新建一个attrs.xml 来设置我们的属性值: <?xml version="1.0" encoding="utf-8" ...
- Android连接网络打印机,jSocket连接网络打印机
老大写的一个打印工具类,记录一下. package com.Ieasy.Tool; import android.annotation.SuppressLint; import java.io.IOE ...
- 实验三实验报告 20135324&&20135330
北京电子科技学院(BESTI) 实验报告 课程:深入理解计算机系统 班级:1353 姓名:张若嘉 杨舒雯 学号:20135330 20135324 成绩: 指导教师:娄嘉鹏 实验日期:2015.11. ...
- Cordova开发环境的搭建
Cordova开发环境的搭建 原文地址:http://imziv.com/blog/article/read.htm?id=66 Cordova为目前做混合式开发中比较受欢迎的一个解决方案了,并且拥有 ...
- 【JVM】模板解释器--如何根据字节码生成汇编码?
1.背景 仅针对JVM的模板解释器: 如何根据opcode和寻址模式,将bytecode生成汇编码. 本文的示例中所使用的字节码和汇编码,请参见上篇博文:按值传递还是按引用? 2.寻址模式 本文不打算 ...
- JS闭包文章--(翻译)Callbacks in Loops
原文地址:http://tobyho.com/2011/11/02/callbacks-in-loops/ 某些时候,你需要在循环里创建一个回调函数.我们来试试给页面里每个链接增加点击事件. var ...
- 备忘:SSRS技巧三则
前言 最近在弄SSRS,发现了三个小技巧.在此记录一下.免得以后忘了. 技巧 1. SSRS输出成EXCEL时,让两个dataset各占一个sheet, 这个简单,在其中一个table的属性加上pag ...