最大流自用模板(例题:HDU1532)

三种模板:Edmonds_Karp,Dinic,SAP

例题:

Drainage Ditches(HDU1532)

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 22365    Accepted Submission(s): 10683)

 

Problem Description

Every time it rains on Farmer John's fields, a pond forms over Bessie's favorite clover patch. This means that the clover is covered by water for awhile and takes quite a long time to regrow. Thus, Farmer John has built a set of drainage ditches so that Bessie's clover patch is never covered in water. Instead, the water is drained to a nearby stream. Being an ace engineer, Farmer John has also installed regulators at the beginning of each ditch, so he can control at what rate water flows into that ditch. 
Farmer John knows not only how many gallons of water each ditch can transport per minute but also the exact layout of the ditches, which feed out of the pond and into each other and stream in a potentially complex network. 
Given all this information, determine the maximum rate at which water can be transported out of the pond and into the stream. For any given ditch, water flows in only one direction, but there might be a way that water can flow in a circle. 

 

Input

The input includes several cases. For each case, the first line contains two space-separated integers, N (0 <= N <= 200) and M (2 <= M <= 200). N is the number of ditches that Farmer John has dug. M is the number of intersections points for those ditches. Intersection 1 is the pond. Intersection point M is the stream. Each of the following N lines contains three integers, Si, Ei, and Ci. Si and Ei (1 <= Si, Ei <= M) designate the intersections between which this ditch flows. Water will flow through this ditch from Si to Ei. Ci (0 <= Ci <= 10,000,000) is the maximum rate at which water will flow through the ditch.

 

Output

For each case, output a single integer, the maximum rate at which water may emptied from the pond. 

 

Sample Input

5 4

1 2 40

1 4 20

2 4 20

2 3 30

3 4 10

 

Sample Output

50 

 

Source

HDU1532

题意:最大流模板题

方法一:Edmonds_Karp
 

#include <cstdio>
#include <iostream>
#include <vector>
#include <queue>
#include <cstring>
#include <algorithm>
const int maxn=205;
const int INF=0x3f3f3f3f;
using namespace std;struct Edge
{int from,to,cap,flow;Edge(int u,int v,int c,int f):from(u),to(v),cap(c),flow(f){}
};vector<Edge> edges;
vector<int> G[maxn];
int a[maxn];
int pre[maxn];void init(int n)
{for (int i=0;i<n;i++)G[i].clear();edges.clear();
}void addedge(int from,int to,int cap)
{edges.push_back(Edge(from,to,cap,0));edges.push_back(Edge(to,from,0,0));int m=edges.size();G[from].push_back(m-2);G[to].push_back(m-1);
}int Edmonds_Karp(int s,int t)
{int flow=0;while(1){memset(a,0,sizeof(a));queue<int> Q;Q.push(s);a[s]=INF;while(!Q.empty()){int x=Q.front();Q.pop();int sz=G[x].size();for (int i=0;i<sz;i++){Edge& e=edges[G[x][i]];if (!a[e.to]&&e.cap>e.flow){pre[e.to]=G[x][i];a[e.to]=min(a[x],e.cap-e.flow);Q.push(e.to);}}if (a[t])break;}if (!a[t])break;for (int u=t;u!=s;u=edges[pre[u]].from){edges[pre[u]].flow+=a[t];edges[pre[u]^1].flow-=a[t];}flow+=a[t];}return flow;
}int main()
{int n,m,u,v,f;while(cin >> n >> m){init(n);for (int i=0;i<n;i++){scanf("%d%d%d",&u,&v,&f);addedge(u,v,f);}cout << Edmonds_Karp(1,m) << endl;}return 0;
}

方法二:Dinic

#include <cstdio>
#include <iostream>
#include <vector>
#include <queue>
#include <cstring>
#include <algorithm>
const int maxn=205;
const int INF=0x3f3f3f3f;
using namespace std;struct Edge
{int from,to,flow;Edge(int u,int v,int f):from(u),to(v),flow(f){}
};vector<Edge> edges;
vector<int> G[maxn];int dis[maxn];
int cur[maxn];void init(int n)
{for (int i=0;i<n;i++)G[i].clear();edges.clear();
}void addedge(int from,int to,int flow)
{edges.push_back(Edge(from,to,flow));edges.push_back(Edge(to,from,0));int m=edges.size();G[from].push_back(m-2);G[to].push_back(m-1);
}bool bfs(int s,int t)
{queue<int> Q;Q.push(s);memset(dis,-1,sizeof(dis));dis[s]=0;while(!Q.empty()){int x=Q.front();Q.pop();int sz=G[x].size();for (int i=0;i<sz;i++) {Edge& e=edges[G[x][i]];if (e.flow>0) {if (dis[e.to]<0) {dis[e.to]=dis[x]+1;Q.push(e.to);}}}}return bool(~dis[t]);
}int dfs(int s,int t,int maxflow) 
{if (s==t)return maxflow;int sz=int(G[s].size());for (int i=cur[s],num;num=G[s][i],i<sz;i++){cur[s]=i;Edge &e=edges[num];if (dis[e.to]==dis[s]+1 && e.flow>0){int flow=dfs(e.to,t,min(maxflow,e.flow));if (flow!=0){e.flow-=flow;edges[num^1].flow+=flow;return flow;}}}return 0;
}int Dinic(int s,int t)
{int ans=0;while(bfs(s,t)){int flow;memset(cur,0,sizeof(cur));while((bool)(flow=dfs(s,t,INF)))ans+=flow;}return ans;
}int main()
{int n,m,u,v,f;while(cin >> n >> m){init(n);for (int i=0;i<n;i++){scanf("%d%d%d",&u,&v,&f);addedge(u,v,f);}cout << Dinic(1,m) << endl;}return 0;
}

方法三:SAP

#include <cstdio>
#include <iostream>
#include <vector>
#include <queue>
#include <cstring>
#include <algorithm>
const int maxn=205;
const int maxm=maxn*maxn;
const int INF=0x3f3f3f3f;
using namespace std;struct Edge
{  int v,w,next;  
}edge[maxm];int dis[maxn],pre[maxn],rec[maxn],head[maxn],gap[maxn],now[maxn];  
int n,m,no,up;
queue<int> q;void addedge(int u,int v,int w)
{edge[no].v=v; edge[no].w=w;edge[no].next=head[u]; head[u]=no++;edge[no].v=u; edge[no].w=0;edge[no].next=head[v]; head[v]=no++;
}void pre_init()  
{  no=0; up=n;memset(head,-1,sizeof(head));  
}void init(int s,int t)
{for(int i=0;i<=up;i++) {now[i]=head[i];gap[i]=0;dis[i]=INF;}while(!q.empty())q.pop();dis[t]=0; q.push(t);while(!q.empty()){int tp=q.front();q.pop();gap[dis[tp]]++;int k=head[tp];while(k!=-1){if(dis[edge[k].v]==INF && edge[k^1].w)  {dis[edge[k].v]=dis[tp]+1;  q.push(edge[k].v);  }k=edge[k].next;  }}
}int SAP(int s,int t)  
{  int ans=0,flow=INF,top=s;  pre[s]=s;init(s,t);  while(dis[s]<up)   {  if(top==t)  {  ans+=flow;  while(top!=s){  edge[rec[top]].w-=flow;  edge[rec[top]^1].w+=flow;  top=pre[top];  }flow=INF;  }  int k=now[top];  while(k!=-1)  {  int v=edge[k].v;  if(edge[k].w && dis[top]==dis[v]+1)  {  flow=min(flow, edge[k].w);  pre[v]=top; rec[v]=k;  now[top]=k;   top=v;  break;  }  k=edge[k].next;  }  if(k==-1){  int mind=n;  if(--gap[dis[top]]==0) break;int k=now[top]=head[top];while(k!=-1)  {  if(edge[k].w && mind>dis[edge[k].v])mind=dis[edge[k].v];  k=edge[k].next;  }  gap[dis[top]=mind+1]++;  top=pre[top];  }}return ans;  
}int main()
{int u,v,f;while(cin >> n >> m){pre_init();for (int i=0;i<n;i++){scanf("%d%d%d",&u,&v,&f);addedge(u,v,f);}cout << SAP(1,m) << endl;}return 0;
}

 

转载于:https://www.cnblogs.com/Radium1209/p/10415348.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/266175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安卓手机python数据可视化_python 数据可视化

# -*- coding:utf-8 -*-# 异常值处理import pandas as pdaimport numpy as npyimport matplotlibmatplotlib.use(Agg)import matplotlib.pyplot as pylimport iodef index(data):# 输出结果必须为字典outputoutput {}# data pda.read_excel("D:/taobao2.xls")data …

$_SERVER

PHP $_SERVER 变量 $_SERVER 是一个包含诸如头信息&#xff08;header&#xff09;、路径&#xff08;path&#xff09;和脚本位置&#xff08;script locations&#xff09;的数组。它是 PHP 中一个超级全局变量&#xff0c;我们可以在 PHP 程序的任何地方直接访问它。 $_SERV…

linux文件编程(4)—— 用ANSIC标准C库函数进行文件编程:fopen、fread、fwrite、fseek

参考&#xff1a;linux文件编程&#xff08;5&#xff09;—— 用ANSIC标准中的C库函数进行文件编程 作者&#xff1a;丶PURSUING 发布时间&#xff1a; 2021-04-11 11:58:25 网址&#xff1a;https://blog.csdn.net/weixin_44742824/article/details/115209680 部分参照&#…

swig封装 c语言函数到python库,python swig 调用C/C++接口

转载&#xff1a;https://www.cnblogs.com/dda9/p/8612068.html当你觉得python慢的时候&#xff0c;当你的c/c代码难以用在python上的时候&#xff0c;你可能会注意这篇文章。swig是一个可以把c/c代码封装为python库的工具。(本文封装为python3的库)文章结构整体看封装只使用py…

Java学习---面试基础知识点总结

Java中sleep和wait的区别① 这两个方法来自不同的类分别是&#xff0c;sleep来自Thread类&#xff0c;和wait来自Object类。sleep是Thread的静态类方法&#xff0c;谁调用的谁去睡觉&#xff0c;即使在a线程里调用b的sleep方法&#xff0c;实际上还是a去睡觉&#xff0c;要让b线…

python中的语言特性_python自测——语言特性

语言特性1.谈谈对 Python 和其他语言的区别答&#xff1a;Python 是一门语法简洁优美,功能强大无比,应用领域非常广泛,具有强大完备的第三方库&#xff0c;他是一门强类型的可移植、可扩展&#xff0c;可嵌入的解释型编程语言&#xff0c;属于动态语言。拿 C 语言和 Python 比&…

使用NPOI和委托做EXCEL导出

首先&#xff0c;在用NPOI导出时&#xff0c;学习了邀月这篇文章NPOI根据Excel模板生成原生的Excel文件实例&#xff0c;在这里先行谢过了。 本篇文章在邀月的基本上&#xff0c;做了一些小的改动&#xff0c;加上委托的机制。因为在做导出时&#xff0c;加载模板&#xff0c;下…

全国计算机等级考试题库二级C操作题100套(第63套)

第63套&#xff1a; 给定程序中&#xff0c;函数fun的功能是&#xff1a;有NN矩阵&#xff0c;根据给定的m&#xff08;m<N&#xff09;值&#xff0c;将每行元素中的值均右移m个位置&#xff0c;左边置为0。例如&#xff0c;N3&#xff0c;m2&#xff0c;有下列矩阵 1 2 3…

android 放大镜功能,简单实现Android放大镜效果

利用之前学过的图形图像绘画技术和图片添加特效技术&#xff0c;我们来实现一个Android放大镜的简单应用。最终效果如图具体实现:用来显示自定义的绘图类的布局文件res/layout/main.xml:xmlns:tools"http://schemas.android.com/tools"android:layout_width"fil…

python直方图拟合曲线_在直方图python中拟合非标准化高斯

我有一个暗图像(原始格式)&#xff0c;并绘制图像的图像和分布 . 正如您所看到的那样&#xff0c;在16处有一个高峰&#xff0c;请忽略它 . 我想通过这个直方图拟合高斯曲线 . 我已经使用这种方法来适应&#xff1a;Un-normalized Gaussian curve on histogram . 然而;我的高斯…

nodejs之express入门

首先安装nodejs&#xff0c;官网下载安装包直接安装&#xff0c; 由于node自带npm&#xff0c;所以npm命令直接即可使用 打开cmd&#xff0c;使用npm install -g express-generator安装express 然后express -e webapp 回车 一个express项目就生成了&#xff0c;简单的不能再简单…

全国计算机等级考试题库二级C操作题100套(第64套)

第64套&#xff1a; 给定程序中&#xff0c;函数fun的功能是&#xff1a;将a所指35矩阵中第k列的元素左移到第0 列&#xff0c;第k列以后的每列元素行依次左移&#xff0c;原来左边的各列依次绕到右边。 例如&#xff0c;有下列矩阵&#xff1a; 1 2 3 4 5 1 2 3 4 5 1 2 3 4 …

android 音乐播放器的状态栏通知,Android仿虾米音乐播放器之通知栏notification解析...

通知栏notification是Android中一个很重要的组件&#xff0c;可以在顶部状态栏中存在&#xff0c;用户也可以通过此来操作应用&#xff0c;在Android中只有3.0以上的版本才加入了notification的按钮点击功能。先看一下仿虾米写出来的通知的效果这是一个自定义的notification&am…

mysql 查询语句_SQL语言mysql基础查询语句

单表查询、条件查询、查询并排序、限制结果查询、查询并排名、分组聚合查询、-- DQL操作&#xff0c;数据基本查询语言使用----------------------------------------------------------------------------------------------- -- 创建数据表-- 注释&#xff1a;员工编号&#…

Android NDK学习(七):NDK 编译支持 C++特有的库

如果你的C代码中出现了很多C特有的库&#xff0c;例如<iostream>,<list>等&#xff0c;那么你还需要在jni的文件夹下添加一个Application.mk文件&#xff0c;文件内容为&#xff1a; APP_STL : stlport_static APP_STL : gnustl_static 示例 Application.mk &#…

android glide本地图片,Glide下载图片并保存到本地

活不多说 上代码:Observable.create(new ObservableOnSubscribe() {Overridepublic void subscribe(ObservableEmitter e) throws Exception {//通过gilde下载得到file文件,这里需要注意android.permission.INTERNET权限e.onNext(Glide.with(mContext).load(imagePathList.get(…

全国计算机等级考试题库二级C操作题100套(第65套)

第65套&#xff1a; 给定程序中&#xff0c;函数fun的功能是&#xff1a;将a所指43矩阵中第k行的元素与第0行元素交换。 例如&#xff0c;有下列矩阵&#xff1a; 1 2 3 4 5 6 7 8 9 10 11 12 若k为2&#xff0c;程序执行结果为&#xff1a; 7 8 9 4 5 6 1 2 3 10 11 12 请在程…

mvdr波束形成原理_5G的“波束赋形”技术是什么东东?

工业互联网建设巳拉开帷幕&#xff0c;作为其“基础设施”的5G许多通信技术将发挥极大作用。波束赋形就是其中之一。电磁波发射波束、如不加人为干涉&#xff0c;是向其四周无死角散射&#xff0c;大部分是做无用功或浪费掉了。而5G的波束赋形技术、就是使用很多微型的毫米级天…

python 2 类与对象

1、类与对象的概念 类即类别、种类&#xff0c;是面向对象设计最重要的概念&#xff0c;从一小节我们得知对象是特征与技能的结合体&#xff0c;而类则是一系列对象相似的特征与技能的结合体。 那么问题来了&#xff0c;先有的一个个具体存在的对象&#xff08;比如一个具体存在…

记录一下 Linux飞鸽传书 QIpMsg 的下载链接

linux下的iptux用来和windows下的飞秋通信很容易中断&#xff0c;不知道是我设置的问题&#xff0c;还是iptux自己的问题。。不想花时间找问题额 然后试了下飞鸽传书蛮好用 可以和windows下的飞秋和飞鸽通信的 记录一下&#xff0c;在这里下载的rpm包&#xff1a; http://www.o…