Describe:
\(n\) 个点,\(m\) 条边,每条边 \(e\) 有一个流量下界 \(\text{lower}(e)\) 和流量上界 \(\text{upper}(e)\),给定源点 \(s\) 与汇点 \(t\),求源点到汇点的最小流。
Solution:
首先因为仍然有流量的限制,第一步就是要找可行流。想到上题无源汇做法,尝试转换。
上题中可行流实际是个环,但这题因为有了源点和汇点,网络中并没有环。所以需要把源点和汇点连起来。因为源点可以无限流出流量,汇点可以无限汇进流量,所以可以连一条从汇点到源点的虚边,容量为 \(inf\)。再按照上题做法,找出可行流。
第二步就要考虑如何从可行流转换到最大流。显然应在可行流的基础上再汇入流量,看剩余的边可以继续流入多少。而可行流流入汇点的流量,已经被记录在虚边的反向边的容量了,加上新跑的最大流即可。
Code:
bool _Start;
#include<deque>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
namespace IO
{
#define TP template<typename T>
#define TP_ template<typename T,typename ... T_>
#ifdef DEBUG
#define gc() (getchar())
#else
char buf[1<<20],*p1,*p2;
#define gc() (p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<20,stdin),p1==p2)?EOF:*p1++)
#endif
#ifdef DEBUG
void pc(const char &c)
{
putchar(c);
}
#else
char pbuf[1<<20],*pp=pbuf;
void pc(const char &c)
{
if(pp-pbuf==1<<20)
fwrite(pbuf,1,1<<20,stdout),pp=pbuf;
*pp++=c;
}
struct IO{~IO(){fwrite(pbuf,1,pp-pbuf,stdout);}}_;
#endif
TP void read(T &x)
{
x=0;static int f;f=0;static char ch;ch=gc();
for(;ch<'0'||ch>'9';ch=gc())ch=='-'&&(f=1);
for(;ch>='0'&&ch<='9';ch=gc())x=(x<<1)+(x<<3)+(ch^48);
f&&(x=-x);
}
TP void write(T x)
{
if(x<0)
pc('-'),x=-x;
static T sta[35],top;top=0;
do
sta[++top]=x%10,x/=10;
while(x);
while(top)
pc(sta[top--]^48);
}
TP_ void read(T &x,T_&...y){read(x);read(y...);}
TP void writeln(const T x){write(x);pc('\n');}
TP void writesp(const T x){write(x);pc(' ');}
TP_ void writeln(const T x,const T_ ...y){writesp(x);writeln(y...);}
TP void debugsp(const T x){fprintf(stderr,"%d ",x);}
TP void debug(const T x){fprintf(stderr,"%d\n",x);}
TP_ void debug(const T x,const T_...y){debugsp(x);debug(y...);}
TP inline T max(const T &a,const T &b){return a>b?a:b;}
TP_ inline T max(const T &a,const T_&...b){return max(a,max(b...));}
TP inline T min(const T &a,const T &b){return a<b?a:b;}
TP_ inline T min(const T &a,const T_&...b){return min(a,min(b...));}
TP inline void swap(T &a,T &b){static T t;t=a;a=b;b=t;}
TP inline T abs(const T &a){return a>0?a:-a;}
#undef TP
#undef TP_
}
using namespace IO;
using std::cerr;
using LL=long long;
constexpr int N=2e2+5,M=1e4+5,inf=1e9;
struct edge
{
int y,f,pre;
}a[M<<1];int alen=1,last[N];
void ins(int x,int y,int f)
{
a[++alen]=edge{y,f,last[x]};
last[x]=alen;
a[++alen]=edge{x,0,last[y]};
last[y]=alen;
}
int n,m,st,ed,S,T;
int h[N],cur[N];
bool pd()
{
static std::deque<int>q;q.clear();
memset(h,0,sizeof(h));h[st]=1;
q.push_back(st);
while(q.size())
{
int x=q.front();q.pop_front();
for(int k=last[x];k;k=a[k].pre)
{
int y=a[k].y;
if(a[k].f&&!h[y])
{
h[y]=h[x]+1;
q.push_back(y);
}
}
}
return h[ed];
}
int findflow(int x,int f)
{
if(x==ed)
return f;
int sx=0,sy;
for(int &k=cur[x];k;k=a[k].pre)
{
int y=a[k].y;
if(a[k].f&&h[y]==h[x]+1)
{
sy=findflow(y,min(a[k].f,f-sx));
a[k].f-=sy;sx+=sy;
a[k^1].f+=sy;
if(sx==f)
return sx;
}
}
if(!sx)
h[x]=-1;
return sx;
}
int dinic()
{
int s=0;
while(pd())
{
memcpy(cur,last,sizeof(cur));
s+=findflow(st,inf);
}
return s;
}
int in[N];
bool _End;
int main()
{
// fprintf(stderr,"%.2 MBlf\n",(&_End-&_Start)/1048576.0);
read(n,m,S,T);
st=n+1;ed=st+1;
for(int i=1;i<=m;i++)
{
int x,y,dn,up;
read(x,y,dn,up);
ins(x,y,up-dn);
in[x]-=dn,in[y]+=dn;
}
int sum=0;
for(int i=1;i<=n;i++)
if(in[i]<0)
ins(i,ed,-in[i]);
else if(in[i]>0)
ins(st,i,in[i]),sum+=in[i];
ins(T,S,inf);
if(dinic()!=sum)
puts("please go home to sleep");
else
{
st=S,ed=T;
writeln(dinic());//在这次跑最大流的过程中,也会把虚边的反向边计入
}
return 0;
}
标签:sx,return,loj,有源,源点,汇点,st,int,汇有
From: https://www.cnblogs.com/lofty2007/p/18023598