Drainage Ditches-最大流问题
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
Output
Sample Input
Sample Output
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 250 #define min(a,b) (a)<(b)? (a):(b) #define MAX 0x3f3f3f3f int n; int m; int f[N][N]; int F; int bf; int color[N]; int p[N]; void DFS_VISIT(int s){ int i; int j; color[s]=2; for(i=0;i<n;i++) if(f[s][i]>0&&color[i]==1){ bf=min(bf,f[s][i]); DFS_VISIT(i); p[i]=s;//记录父节点 } color[s]=3; } void DFS(){ int i; int j; int k; for(i=0;i<n;i++){ color[i]=1; } p[0]=-1; DFS_VISIT(0); if(color[n-1]==3){//最后一个点的颜色为3,被搜索到 k=n-1; F+=bf; while(p[k]!=-1){//当回溯到父节点为-1,即第一个点时才停止 f[k][p[k]]+=bf;//计算残余流量 f[p[k]][k]-=bf; k=p[k]; } bf=MAX; DFS(); } } int main(){ int i; int j; int p,q; long r; freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); while(scanf("%d%d",&m,&n)!=EOF){ F=0; if(m==0) { printf("%d\n",F); } else{ memset(f,0,sizeof(f)); for(i=0;i<m;i++){ scanf("%d%d%d",&p,&q,&r); f[p-1][q-1]+=r;//有可能出现两次从a到b的流量所以必须相加 } bf=MAX; DFS(); printf("%d\n",F); } } return 0; }