首页 技术 正文
技术 2022年11月20日
0 收藏 410 点赞 2,204 浏览 2842 个字

Drainage Ditches

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

Problem DescriptionEvery 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.  InputThe 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. OutputFor each case, output a single integer, the maximum
rate at which water may emptied from the pond.  Sample Input5 41 2 401 4 202 4 202 3 303 4 10 Sample Output50 SourceUSACO
93
 Recommendlwg   |   We have carefully selected several similar
problems for you:  1533 3338 1569 3572 3416  第一次学习写最大流问题,一道模板题,思路还是比较清晰的,不过算法效率不是很高,还需要学习更快的方法。 题意:就是由于下大雨的时候约翰的农场就会被雨水给淹没,无奈下约翰不得不修建水沟,而且是网络水沟,并且聪明的约翰还控制了水的流速,本题就是让你求出最大流速,无疑要运用到求最大流了。题中N为水沟数,M为水沟的顶点,接下来Si,Ei,Ci分别是水沟的起点,终点以及其容量。求源点1到终点M的最大流速。注意重边 附上代码: 

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
#define INF 1e9
#define CL(a,b) memset(a,b,sizeof(a))
#define N 205 int n,m;
int mat[N][N];
int pre[N];
bool vis[N]; int xmin(int a,int b)
{
return a>b?b:a;
} bool BFS()
{
int cur;
queue<int> q;
CL(pre,);
CL(vis,false);
vis[]=true; ///true表示这个点已作为起点搜索过了
q.push();
while(!q.empty())
{
cur=q.front();
q.pop();
if(cur == n) return true; ///若搜到了终点,说明这是条增广路径,更新结果
for(int i=; i<=n; i++)
if(!vis[i] && mat[cur][i]) ///是否存在通过的路径
{
q.push(i);
pre[i]=cur;
vis[i]=true;
}
}
return false; ///若已经搜不到终点,则搜索结束
} int max_flow()
{
int ans=;
while()
{
if(!BFS()) return ans;
int Min = INF;
for(int i=n; i!=; i=pre[i])
Min=xmin(Min,mat[pre[i]][i]); ///找到最小的边,残留路径越小,则流量越大
for(int i=n; i!=; i=pre[i])
{
mat[pre[i]][i]-=Min; ///正向边
mat[i][pre[i]]+=Min; ///反向边
}
ans+=Min;
}
} int main()
{
int i,j;
while(~scanf("%d%d",&m,&n))
{
CL(mat,);
int a,b,c;
while(m--)
{
scanf("%d%d%d",&a,&b,&c);
mat[a][b]+=c; ///考虑重边情况,若有两条同样的边,流量为它们的和
}
printf("%d\n",max_flow());
}
return ;
}
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,997
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,511
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,356
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,139
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,770
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,848