题目传送门:https://blog.csdn.net/zsyz_zzy/article/category/7479944
题意:
有n个点,m条边,求从st到ed的最大流。
思路:
模板题,不讲(只是留个存档)。
代码:
#include<cstdio>
#include<cstring>
#include<queue>
#include<algorithm>
#define INF 2147483647
using namespace std;
queue<int> f;
struct node{int x,y,z,next;} a[200010];
int last[10010];
int n,m,len=-1,st,ed;
bool bz[10010];
void ins(int x,int y,int z)
{
a[++len].x=x;a[len].y=y;a[len].z=z;a[len].next=last[x];last[x]=len;
}
int h[10010];
bool bfs()
{
memset(h,0,sizeof(h));
h[st]=1;
f.push(st);
while(!f.empty())
{
int x=f.front();
for(int i=last[x];i>=0;i=a[i].next)
{
int y=a[i].y;
if(a[i].z>0&&h[y]==0)
{
h[y]=h[x]+1;
f.push(y);
}
}
f.pop();
}
if(h[ed]) return true; else return false;
}
int dfs(int x,int f)
{
int s=0,t;
if(x==ed) return f;
for(int i=last[x];i>=0;i=a[i].next)
{
int y=a[i].y;
if(a[i].z>0&&h[y]==h[x]+1&&f>s)
{
s+=(t=(dfs(y,min(f-s,a[i].z))));
a[i].z-=t;
a[i^1].z+=t;
}
}
if(!s) h[x]=0;
return s;
}
int dinic()
{
int sum=0;
while(bfs())
sum+=dfs(st,INF);
return sum;
}
int main()
{
int x,y,z;
scanf("%d %d %d %d",&n,&m,&st,&ed);
memset(last,-1,sizeof(last));
for(int i=1;i<=m;i++)
{
scanf("%d %d %d",&x,&y,&z);
ins(x,y,z),ins(y,x,0);
}
printf("%d",dinic());
}