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

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

Drainage Ditches
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 67387   Accepted: 26035

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 41 2 401 4 202 4 202 3 303 4 10

Sample Output

50

_________________________________________________________________

这好像是道网络流模板题

但为何我做得一点模板样都没有

/*POJ1273 Drainage Ditches*///网络流模板题 #include
#include
#include
#include
#include
#include
#include
using namespace std;const int INF=1000000;struct Ed{ int f,t; int cap,flow; Ed(int u,int v,int c,int f):f(u),t(v),cap(c),flow(f){}};int s,n,m;//起点,结点数,终点 vector
e;//边 vector
G[2000];//邻接表,存储边序号 int a[600];//残量 int p[600];//保存线路用以回溯//void clear1(int n){//初始化 for(int i=0;i<=n;i++) G[i].clear(); e.clear();}void add_edge(int from,int to,int cap){//添加边,正反向边相邻存储 e.push_back(Ed(from,to,cap,0)); e.push_back(Ed(to,from,0,0)); int si=e.size(); G[from].push_back(si-2); G[to].push_back(si-1);//相邻两条边分别加入邻接表 return;}int fl(){ int res=0,i; for(;;){//BFS memset(a,0,sizeof(a)); queue
q; q.push(s); a[s]=INF; while(!q.empty()){ int x=q.front();//本轮出发点 q.pop(); for(i=0;i
edge.flow){//之前未到达,且结点有剩余流量 a[edge.t]=min(a[x],edge.cap-edge.flow); p[edge.t]=G[x][i]; q.push(edge.t); }
			if(a[m])break;//找到增广路,退出
}if(!a[m])break;//无增广路,结束 for(int u=m;u!=s;u=e[p[u]].f){e[p[u]].flow+=a[m];// e[p[u]^1].flow-=a[m];}res+=a[m];}return res;}int main(){s=1;while(scanf("%d%d",&n,&m)!=EOF){clear1(n);int i,j,u,v,c;for(i=1;i<=n;i++){scanf("%d%d%d",&u,&v,&c);add_edge(u,v,c);}printf("%d\n",fl());}return 0;}
 

转载于:https://www.cnblogs.com/SilverNebula/p/5550599.html

你可能感兴趣的文章
MyEclipse中使用Hql编辑器找不到Hibernate.cfg.xml文件解决方法
查看>>
yRadio以及其它
查看>>
第四节 对象和类
查看>>
闪迪(SanDisk)U盘防伪查询(官方网站)
查看>>
Android onMeasure方法介绍
查看>>
无锁数据结构
查看>>
MySQL的变量查看和设置
查看>>
android onNewIntent
查看>>
XML特殊符号
查看>>
kaptcha可配置项
查看>>
JavaMail邮箱验证用户注册
查看>>
系统时间——ntpd
查看>>
反射实现AOP动态代理模式(Spring AOP实现原理)
查看>>
Http协议与缓存
查看>>
监测超过特定内存阀值进程并结束
查看>>
Linux Centos 查询信息
查看>>
android adb命令
查看>>
python “双”稀疏矩阵转换为最小联通量“单”矩阵
查看>>
揭秘天猫双11背后:20万商家600万张海报,背后只有一个鹿班
查看>>
重置mysq root密码脚本
查看>>