标签:des style http color os strong io for
| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 55276 | Accepted: 21122 |
Description
Input
Output
Sample Input
5 4 1 2 40 1 4 20 2 4 20 2 3 30 3 4 10
Sample Output
50
#include"stdio.h"
#include"string.h"
#include"queue"
using namespace std;
#define N 205
const int inf=0x7fffffff;
int g[N][N];
int pre[N],mark[N];
int ek(int n)
{
int i,u,d,ans=0;
while(1)
{
queue<int>q;
q.push(1);
memset(mark,0,sizeof(mark));
memset(pre,0,sizeof(pre));
mark[1]=1;
while(!q.empty())
{
u=q.front();
q.pop();
for(i=1;i<=n;i++)
{
if(!mark[i]&&g[u][i])
{
mark[i]=1;
pre[i]=u;
q.push(i);
}
}
}
if(pre[n]==0)
break;
d=inf;
for(i=n;i!=1;i=pre[i])
{
d=min(d,g[pre[i]][i]);
}
for(i=n;i!=1;i=pre[i])
{
g[pre[i]][i]-=d;
g[i][pre[i]]+=d;
}
ans+=d;
}
return ans;
}
int main()
{
int n,m,u,v,w;
while(scanf("%d%d",&n,&m)!=-1)
{
memset(g,0,sizeof(g));
while(n--)
{
scanf("%d%d%d",&u,&v,&w);
g[u][v]+=w;
}
printf("%d\n",ek(m));
}
return 0;
}
hdu 1532 poj 1273 Drainage Ditches (最大流),布布扣,bubuko.com
hdu 1532 poj 1273 Drainage Ditches (最大流)
标签:des style http color os strong io for
原文地址:http://blog.csdn.net/u011721440/article/details/38236571