BZOJ 1497--最大获利(最小割)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1497--最大获利(最小割)相关的知识,希望对你有一定的参考价值。
最大流和最小割。。。。。emmmmm。。。
题目链接:
http://www.lydsy.com/JudgeOnline/problem.php?id=1497
Solution
详见胡泊涛论文《最小割模型在信息学竞赛中的应用》。。。
若a,b之间有一条收益为c的边,则新建一个点,点权为c,分别向a,b连边,a,b点权为他们的花费。
其实就是构造最大权封闭子图,然后跑一遍最大流。。。
代码
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<iostream> #define inf 1000000000 #define N 100050 using namespace std; inline int Read(){ int x=0,f=1;char ch=getchar(); while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();} return x*f; } char ch; int n,m,d,S,T,ans,tot; int cnt=1; int hed[N],h[N],q[N]; struct edge{ int r,nxt,v; }e[500000]; void insert(int u,int v,int w){ e[++cnt].r=v;e[cnt].nxt=hed[u];hed[u]=cnt;e[cnt].v=w; e[++cnt].r=u;e[cnt].nxt=hed[v];hed[v]=cnt;e[cnt].v=0; } bool bfs(){ int head=0,tail=1,now; memset(h,-1,sizeof(h)); h[S]=1;q[1]=S; while(head!=tail){ head++;now=q[head]; for(int i=hed[now];i;i=e[i].nxt) if(e[i].v&&h[e[i].r]==-1){ h[e[i].r]=h[now]+1; q[++tail]=e[i].r; } } return h[T]!=-1; } int dfs(int x,int F){ if(x==T) return F; int w,used=0; for(int i=hed[x];i;i=e[i].nxt) if(h[x]+1==h[e[i].r]){ w=F-used; w=dfs(e[i].r,min(w,e[i].v)); e[i].v-=w; e[i^1].v+=w; used+=w; if(used==F) return F; } if(!used) h[x]=-1; return used; } void dinic(){ while( bfs() ) ans+=dfs(0,inf); } int main(){ int sum=0; int u,v,w; n=Read();m=Read(); S=0;T=n+m+1; for(int i=1;i<=n;i++){ w=Read(); insert(S,i,w); } for(int i=1;i<=m;i++){ u=Read();v=Read();w=Read(); insert(u,i+n,inf); insert(v,i+n,inf); insert(i+n,T,w); sum+=w; } dinic(); printf("%d\n",sum-ans); return 0; }
This passage is made by Iscream-2001.
以上是关于BZOJ 1497--最大获利(最小割)的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ1497 [NOI2006]最大获利 网络流 最小割 SAP