Flow Problem

Time Limit: 5000/5000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 13849    Accepted Submission(s): 6609

Problem Description
Network flow is a well-known difficult problem for ACMers. Given a graph, your task is to find out the maximum flow for the weighted directed graph.
 
Input
The first line of input contains an integer T, denoting the number of test cases.
For each test case, the first line contains two integers N and M, denoting the number of vertexes and edges in the graph. (2 <= N <= 15, 0 <= M <= 1000)
Next M lines, each line contains three integers X, Y and C, there is an edge from X to Y and the capacity of it is C. (1 <= X, Y <= N, 1 <= C <= 1000)
 
Output
For each test cases, you should output the maximum flow from source 1 to sink N.
 
Sample Input
2
3 2
1 2 1
2 3 1
3 3
1 2 1
2 3 1
1 3 1
 
Sample Output
Case 1: 1
Case 2: 2
 
第一道网络流的题。
Edmonds-Karp算法:
从零流(所有边流量均为0)开始不断增加流量,保持每次增加流量后都满足流量限制、反对称性、流量平衡这3个条件。
把原图中每条边上的容量与流量之差(称为残余容量,简称残量)计算出,得到残量网络,残量网络中的边数可能达到原图中边数的两倍(详见小白书。残量网络是为了可以自我修正。假如当前增广路造成了堵塞时,若有反向边就可以修正错误。)
 
残量网络中任何一条从s到t的邮箱道路对应一条原图中的增广路,只要求出该道路中所有残量的最小值d,把对应的所有边上的流量增加d即可,这个过程称为增广。不难验证,如果增广前的流量满足3个条件,增广后仍然满足。显然,只要残量网络中存在增广路,流量就可以增大(如果残量网络中不存在增广路,则当前流就是最大流)——增广路定理
 
#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
using namespace std;
#define N 20
#define INF 100000000 int cap[N][N];
int flow[N][N];
queue<int>q;
int main()
{
int t,cnt=;
scanf("%d",&t);
while(t--)
{
while(!q.empty())
q.pop();
int n,m;
scanf("%d%d",&n,&m);
memset(cap,,sizeof(cap));
for(int i=; i<m; i++)
{
int x,y,c;
scanf("%d%d%d",&x,&y,&c);
if(cap[x][y]!=)
cap[x][y]+=c;
else
cap[x][y]=c;
}
int totf=,a[N],p[N];
memset(flow,,sizeof(flow));
for(;;)
{
memset(a,,sizeof(a));
a[]=INF;
q.push();
while(!q.empty())
{
int u=q.front();
q.pop();
for(int v=; v<=n; v++)
if(!a[v]&&cap[u][v]>flow[u][v])
{
p[v]=u;
q.push(v);
if(cap[u][v]-flow[u][v]>a[u])
a[v]=a[u];
else
a[v]=cap[u][v]-flow[u][v];
}
}
if(a[n]==)
break;
for(int u=n; u!=; u=p[u])
{
flow[p[u]][u]+=a[n];
flow[u][p[u]]-=a[n];
}
totf+=a[n];
}
printf("Case %d: %d\n",++cnt,totf);
}
return ;
}

最新文章

  1. CentOS RDO方式快速安装OpenStack
  2. xml中数据存储 &lt;![CDATA[ … ]]&gt;
  3. PHP + Redis 实现一个简单的twitter
  4. (五)、nodejs使用bootstrap的样式进行分页
  5. 怒刷DP之 HDU 1069
  6. TreeView1MouseMove
  7. swing容器继承重绘问题解决
  8. C语言头文件的使用与写法
  9. IOS面试题(虽然我们很少用)
  10. js借用和绑定
  11. php 程序员的历程
  12. Bootstrap3.0(进度条、媒体对象、列表组、面板)
  13. [转]Debugging the Mac OS X kernel with VMware and GDB
  14. 推荐几个好的 Maven 常用仓库网址
  15. maven 添加memcached.jar配置方法
  16. Java Servlet 笔记1
  17. Android之崩溃日志管理
  18. 爬虫入门(三)——动态网页爬取:爬取pexel上的图片
  19. 【转】WPF自定义控件与样式(10)-进度控件ProcessBar自定义样
  20. Python基础02_基本数据类型_以及while

热门文章

  1. Qt学习之QListWidget删除Item
  2. UVa 12279 - Emoogle Balance
  3. tomcat的localhost_access_log日志文件
  4. [C]if (CONDITION)语句中CONDITION的情况
  5. 通过adb push 从电脑里复制文件到手机里
  6. 深入理解7816(1)---- 关于F/D和etu【转】
  7. 杂项:E-Learning
  8. 53. 部门信息显示 EXTJS 单击树节点
  9. Counterfeit Dollar
  10. [Swift通天遁地]五、高级扩展-(9)颜色、设备、UserDefaults、URL等扩展方法