poj 1273 && hdu 1532 Drainage Ditches (网络最大流)
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 53640 | Accepted: 20448 |
Description
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
Output
Sample Input
5 4
1 2 40
1 4 20
2 4 20
2 3 30
3 4 10
Sample Output
50
Source
//312K 0MS C++ 1400B 2014-05-03 17:50:04
//最大流模板题
#include<iostream>
#include<queue>
#define INF 0x7ffffff
#define N 205
using namespace std;
int flow[N],vis[N];
int g[N][N],father[N];
int maxflow,n,m;
int Min(int a,int b)
{
return a<b?a:b;
}
void EK(int s,int e)
{
queue<int>Q;
while(){
memset(vis,,sizeof(vis));
memset(flow,,sizeof(flow));
Q.push(s);
flow[s]=INF;
while(!Q.empty()){
int u=Q.front();
Q.pop();
for(int v=;v<=n;v++){
if(!vis[v] && g[u][v]>){
vis[v]=;
father[v]=u;
Q.push(v);
flow[v]=Min(flow[u],g[u][v]);
}
}
if(flow[e]>){
while(!Q.empty()) Q.pop();
break;
}
}
if(flow[e]==) break;
for(int i=e;i!=s;i=father[i]){
g[father[i]][i]-=flow[e];
g[i][father[i]]+=flow[e];
}
maxflow+=flow[e];
}
}
int main(void)
{
int a,b,c;
while(scanf("%d%d",&m,&n)!=EOF)
{
memset(g,,sizeof(g));
maxflow=;
while(m--){
scanf("%d%d%d",&a,&b,&c);
g[a][b]+=c;
}
EK(,n);
printf("%d\n",maxflow);
}
return ;
}
dinic算法:
O(n*n*m)(如果用bfs实现增广路径的话则是O(n*m*m),好像是另一个算法了)
效率比EK高,因为多了优化。
算法思想:重复搜索增广路径的动作,而判定条件改为直到不能分层为止,能避免很多不必要的过程。(因为偷懒所以用了STL实现队列和邻接表)
//15MS 340K 1496 B G++
#include<iostream>
#include<queue>
#include<vector>
#define N 205
#define INF 0x7ffffff
using namespace std;
struct node{
int v,c;
node(int a,int b){
v=a;c=b;
}
};
int n,m;
vector<node>V[N];
int dis[N];
queue<int>Q;
bool bfs() //分层
{
memset(dis,-,sizeof(dis));
dis[]=;
int u=;
Q.push(u);
while(!Q.empty()){
u=Q.front();
Q.pop();
for(int i=;i<V[u].size();i++){
if(dis[V[u][i].v]==- && V[u][i].c>){
dis[V[u][i].v]=dis[u]+;
Q.push(V[u][i].v);
}
}
}
return dis[n]>=;
}
int dfs(int u,int minn) //增广
{
if(u==n) return minn;
for(int i=;i<V[u].size();i++){
if(dis[V[u][i].v]==dis[u]+ && V[u][i].c>){
int c=V[u][i].c;
minn=minn<c?minn:c;
int ans=dfs(V[u][i].v,minn);
if(ans>){
V[u][i].c-=ans;
return ans;
}
}
}
return ;
}
int dinic()
{
int ans=;
while(bfs()){
ans+=dfs(,INF);
//printf("*%d\n",ans);
}
return ans;
}
int main(void)
{
int u,v,c;
while(scanf("%d%d",&m,&n)!=EOF)
{
for(int i=;i<=n;i++)
V[i].clear();
for(int i=;i<m;i++){
scanf("%d%d%d",&u,&v,&c);
V[u].push_back(node(v,c));
}
printf("%d\n",dinic());
}
return ;
}
ISAP:
O(n*n*m)
算法思想:这个算法看的时间比较长,因为比较难找到合理化的解释,第一次基本是套用别人的模板,现在写一下自己的理解。
算法复杂度上的分析我理解的不是很透彻,因此先借用别人的结果。而ISAP算法就分为几部分,开始先逆向BFS初始化距离标号,然后进入ISAP主函数,和标号法的思想差不多,(1)一直循环查找增广路径;(2)找到增广路径时则进行augment()处理,找不到时则回退retreat()处理;(3)当出现断层或则d[source]>=n时算法结束。
推荐一个网站:http://blog.csdn.net/yuhailin060/article/details/4897608
伪代码:
algorithm Improved-Shortest-Augmenting-Path
f <--
从终点 t 开始进行一遍反向 BFS 求得所有顶点的起始距离标号 d(i)
i <-- s
while d(s) < n do
if i = t then // 找到增广路
Augment
i <-- s // 从源点 s 开始下次寻找
if Gf 包含从 i 出发的一条允许弧 (i,j)
then Advance(i)
else Retreat(i) // 没有从 i 出发的允许弧则回退
return f procedure Advance(i)
设 (i,j) 为从 i 出发的一条允许弧
pi(j) <-- i // 保存一条反向路径,为回退时准备
i <-- j // 前进一步,使 j 成为当前结点 procedure Retreat(i)
d(i) <-- + min{d(j):(i,j)属于残量网络Gf} // 称为重标号的操作
if i != s
then i <-- pi(i) // 回退一步 procedure Augment
pi 中记录为当前找到的增广路 P
delta <-- min{rij:(i,j)属于P}
沿路径 P 增广 delta 的流量
更新残量网络 Gf
题目解决的实现:
邻接矩阵:
//15MS 532K 2612 B G++
#include<stdio.h>
#include<string.h>
#define N 202
#define inf 0x7fffffff
int n,m,source,sink;
int g[N][N],f[N][N];
int pi[N]; //增广路径
int curnode[N]; //当前节点,优化循环 int queue[N]; //队列 int d[N]; //距离标号
int num[N]; //num[i] 为 d[j]=i 的数量,记录是否断层,断层结束算法 int bfs() //逆向bfs初始化距离标号
{
int head=,tail=;
for(int i=;i<=n;i++)
num[d[i]=n]++; num[n]--;
d[sink]=;
num[]++; queue[++tail]=sink; while(head!=tail){
int u=queue[++head]; for(int i=;i<=n;i++){
if(d[i]<n || g[i][u]==) continue; queue[++tail]=i; num[n]--;
d[i]=d[u]+;
num[d[i]]++;
}
}
return ;
} int augment() //处理增广路径
{
int width=inf;
for(int i=sink,j=pi[i];i!=source;i=j,j=pi[j]){
if(g[j][i]<width) width=g[j][i];
} for(int i=sink,j=pi[i];i!=source;i=j,j=pi[j]){
g[j][i]-=width; f[j][i]+=width;
g[i][j]+=width; f[i][j]-=width;
} return width;
} int retreat(int &i) //处理回退,重标号
{
int temp;
int mind=n-;
for(int j=;j<=n;j++)
if(g[i][j]> && d[j]<mind)
mind=d[j]; temp=d[i]; num[d[i]]--;
d[i]=mind+;
num[d[i]]++; if(i!=source) i=pi[i]; return num[temp];
} int maxflow(int s,int e) //ISAP求最大流
{
int i,j,flow=; source=s;
sink=e;
bfs();
//for(int i=1;i<=n;i++) printf("*%d\n",d[i]);
for(i=;i<=n;i++) curnode[i]=; i=source; for( ; d[source]<n ; ){ //主循环
for(j=curnode[i];j<=n;j++) //查找允许弧
if(g[i][j]> && d[i]==d[j]+)
break;
if(j<=n){ //存在允许弧
curnode[i]=j;
pi[j]=i;
i=j; if(i==sink){ //找到增广路径
flow+=augment();
//printf("*%d %d\n",pi[i],flow);
i=source;
} }else{ //不存在允许弧
curnode[i]=;
if(retreat(i)==) break;
}
}
return flow;
} int main(void)
{
int a,b,c;
while(scanf("%d%d",&m,&n)!=EOF)
{
memset(g,,sizeof(g));
memset(f,,sizeof(f));
for(int i=;i<m;i++){
scanf("%d%d%d",&a,&b,&c);
g[a][b]+=c;
}
printf("%d\n",maxflow(,n));
}
return ;
}
邻接表:
//15MS 320K 1811 B G++
#include<iostream>
#define N 1005
#define inf 0x7fffffff
using namespace std;
struct node{
int v;
int c;
int next;
}edge[N]; int head[N],eid;
int n,m; int h[N]; //距离标号
int gap[N]; //记录是否断层 void addedge(int u,int v,int c) //有向图
{
edge[eid].v=v;
edge[eid].c=c;
edge[eid].next=head[u];
head[u]=eid++;
edge[eid].v=u;
edge[eid].c=;
//edge[eid].c=c; //有向图
edge[eid].next=head[v];
head[v]=eid++;
}
int dfs(int u,int tc)
{
if(u==n) return tc; //找到增广路径
int c0;
int minh=n-;
int temp=tc;
for(int i=head[u];i!=-;i=edge[i].next){ //遍历与u有关的弧
int v=edge[i].v;
int c=edge[i].c;
if(c>){
if(h[v]+==h[u]){ //可行弧
c0=temp<c?temp:c;
c0=dfs(v,c0);
edge[i].c-=c0;
edge[i^].c+=c0;
temp-=c0;
if(h[]>=n) return tc-temp;
if(temp==) break;
}
if(h[v]<minh) minh=h[v]; //更新最短距离标号
}
}
if(temp==tc){ //不存在可行弧,回退操作
--gap[h[u]];
if(gap[h[u]]==) h[]=n; //出现断层
h[u]=minh+;
++gap[h[u]];
}
return tc-temp;
}
int ISAP() //isap算法
{
int ans=;
memset(gap,,sizeof(gap));
memset(h,,sizeof(h));
gap[]=n;
while(h[]<n){
ans+=dfs(,inf);
}
return ans;
}
int main(void)
{
int u,v,c;
while(scanf("%d%d",&m,&n)!=EOF)
{
memset(head,-,sizeof(head));
eid=;
for(int i=;i<m;i++){
scanf("%d%d%d",&u,&v,&c);
addedge(u,v,c);
}
printf("%d\n",ISAP());
}
return ;
}
poj 1273 && hdu 1532 Drainage Ditches (网络最大流)的更多相关文章
- POJ 1273 || HDU 1532 Drainage Ditches (最大流模型)
Drainage DitchesHal Burch Time Limit 1000 ms Memory Limit 65536 kb description Every time it rains o ...
- hdu 1532 Drainage Ditches(最大流模板题)
Drainage Ditches Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- 【初识——最大流】 hdu 1532 Drainage Ditches(最大流) USACO 93
最大流首次体验感受—— 什么是最大流呢? 从一个出发点(源点),走到一个目标点(汇点),途中可以经过若干条路,每条路有一个权值,表示这条路可以通过的最大流量. 最大流就是从源点到汇点,可以通过的最大流 ...
- POJ 1273 Drainage Ditches (网络最大流)
http://poj.org/problem? id=1273 Drainage Ditches Time Limit: 1000MS Memory Limit: 10000K Total Sub ...
- hdu 1532 Drainage Ditches (最大流)
最大流的第一道题,刚开始学这玩意儿,感觉好难啊!哎····· 希望慢慢地能够理解一点吧! #include<stdio.h> #include<string.h> #inclu ...
- HDU 1532 Drainage Ditches 分类: Brush Mode 2014-07-31 10:38 82人阅读 评论(0) 收藏
Drainage Ditches Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- HDU 1532 Drainage Ditches (最大网络流)
Drainage Ditches Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) To ...
- HDU 1532 Drainage Ditches (网络流)
A - Drainage Ditches Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64 ...
- hdu 1532 Drainage Ditches(最大流)
Drainage Dit ...
随机推荐
- 1057: [ZJOI2007]棋盘制作
1057: [ZJOI2007]棋盘制作 https://www.lydsy.com/JudgeOnline/problem.php?id=1057 分析: 首先对于(i+j)&1的位置0-& ...
- “网易有钱”sketch使用分享
本文来自网易云社区 写在开头,关于ps与sketch之间的优劣网上已经有很多分享,大家有兴趣可以百度,其中对否我们在这里不予评价.在移动互联网时代每个app从几十到上百张页面,如果用ps绘制一个个页面 ...
- 「LeetCode」0001-Two Sum(Ruby)
题意与分析 题意直接给出来了:给定一个数,返回数组中和为该数(下为\(x\))的两个数的下标. 这里有一个显然的\(O(n)\)的实现:建立一个hash表,每次读入数(记作\(p\))的时候查询has ...
- C++ 基础面试题-1
请说出下面代码在32位系统下的输出内容 /* ** 2018/03/21 21:43:00 ** Brief: ** Author:ZhangJianWei ** Email:Dream_Dog@16 ...
- OSG的组成结构
OSG的组成结构 核心结构 OSG的功能类采用“命名空间+类名称”的形式来命名.命名空间的命名方式为:第一个单词小写,后继单词的首字母大写,例如osg.osgUtil.osgViewer等:类的名称则 ...
- 消费者用nginx做负载均衡,提供者用zookeeper自带功能实现负载均衡
公司的项目基于阿里的Dubbo微服务框架开发.为了符合相关监管部门的安全要求,公司购买了华东1.华东2两套异地服务器,一套是业务服务器,一套是灾备服务器.准备在这两套服务器上实现Dubbo的分布式服务 ...
- Unity Lighting - The Precompute Process 预计算过程(二)
The Precompute Process 预计算过程 In Unity, precomputed lighting is calculated in the background - eith ...
- php导出excel表格的使用
网站后台有很多列表数据,常常都会有导出excel表格的需求,和大家分享一个实用的导出excel表格方法: 不多说,上代码: /** * @param array $data 要导出的数据 * @par ...
- [JSON].toString()
语法:[JSON].toString() 返回:[String] 说明:获取[JSON]实例的字符串结果 示例: <% jsonString = "{div: 'hello word! ...
- Vue 编程之路(二)——跳转页面传值
最近公司的一个项目中使用 Vue 2.0 + element UI 实现一个后台管理系统的前端部分,属于商城类型.其中我负责的部分有一项需要跳转页面,由于跳转前的页面是多个组件构成的,所以在跳转页面的 ...