博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-1273 Drainage Ditches 最大流Dinic
阅读量:4520 次
发布时间:2019-06-08

本文共 2922 字,大约阅读时间需要 9 分钟。

Drainage Ditches

Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 65146 Accepted: 25112

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

题目大意:草地排水。。。

多组数据,有源有汇。。。。

CODE:

#include
#include
#include
#include
#include
using namespace std;#define maxn 300int dis[maxn]={0};int way[maxn][maxn]={0};int q[maxn*10],h,t;int n,m,ans;bool bfs(){ h=0;t=1; memset(dis,0xff,sizeof(dis)); dis[1]=0; q[1]=1; while (h
0) { dis[i]=dis[j]+1; q[++t]=i; } } } if (dis[n]>0) return true; else return false;}int dfs(int loc,int low){ int ans=0; if (loc==n) return low; for (int i=1; i<=n; i++) if (way[loc][i]>0 && dis[i]==dis[loc]+1 && (ans=dfs(i,min(loc,way[loc][i])))) { way[loc][i]-=ans; way[i][loc]+=ans; return ans; } return 0;}int main(){ while (~scanf("%d%d",&m,&n)) { memset(way,0,sizeof(way)); for (int i=1; i<=m; i++) { int s,e,water; scanf("%d%d%d",&s,&e,&water); way[s][e]+=water; } ans=0; while (bfs()) { int now; while (now=dfs(1,0x7fffffff)) ans+=now; } printf("%d\n",ans); } return 0;}

转载于:https://www.cnblogs.com/DaD3zZ-Beyonder/p/5346238.html

你可能感兴趣的文章
struts2配置默认Action
查看>>
EA类图与代码同步
查看>>
Spring集成MyBatis01 【推荐使用】、springMVC中文乱码和json转换问题
查看>>
Android Studio 智能感知无效
查看>>
vs2005/vs2008 快捷键【转】
查看>>
javascript 日常
查看>>
Android打开相机进行人脸识别,使用虹软人脸识别引擎
查看>>
打印沙漏
查看>>
腾讯物联TencentOS tiny上云初探
查看>>
nginx 安装
查看>>
C#中upd分包与发送,已经实现全部代码
查看>>
让插件帮你优化代码
查看>>
学习笔记3
查看>>
LeetCode 20. Valid Parentheses
查看>>
LeetCode 4 Keys Keyboard
查看>>
bean找不到异常
查看>>
重拾Javascript基础(三) - DOM属性&方法
查看>>
电感在电路中的作用(硬件01)
查看>>
ng 动态的生成option。
查看>>
ORACLE-12C-RAC INSTALL
查看>>