标签:input 现在 lin bool memset ring algo names MF
BZOJ_1391_[Ceoi2008]order_最大权闭合子图
#include <stdio.h> #include <string.h> #include <algorithm> using namespace std; #define N 2500 #define M 3600050 #define S (n+m+1) #define T (n+m+2) #define inf 100000000 int head[N],to[M],nxt[M],flow[M],cnt=1,dep[N],Q[N],l,r,sum,n,m,cur[N]; inline void add(int u,int v,int f) { to[++cnt]=v; nxt[cnt]=head[u]; head[u]=cnt; flow[cnt]=f; to[++cnt]=u; nxt[cnt]=head[v]; head[v]=cnt; flow[cnt]=0; } bool bfs() { int i; memset(dep,0,sizeof(dep)); l=r=0; Q[r++]=S; dep[S]=1; while(l<r) { int x=Q[l++]; for(i=head[x];i;i=nxt[i]) { if(!dep[to[i]]&&flow[i]) { dep[to[i]]=dep[x]+1; if(to[i]==T) return 1; Q[r++]=to[i]; } } } return 0; } int dfs(int x,int mf) { if(x==T) return mf; int nf=0,i; for(i=cur[x];i;i=nxt[i]) { if(dep[to[i]]==dep[x]+1&&flow[i]) { int tmp=dfs(to[i],min(mf-nf,flow[i])); if(!tmp) dep[to[i]]=0; nf+=tmp; flow[i]-=tmp; if(flow[i]) cur[x]=i; flow[i^1]+=tmp; if(nf==mf) break; } } return nf; } void dinic() { int ans=sum,f,i; while(bfs()) { for(i=1;i<=T;i++) cur[i]=head[i]; while(f=dfs(S,inf)) ans-=f; } printf("%d\n",ans); } int main() { scanf("%d%d",&n,&m); int i,x,y,z,w; for(i=1;i<=n;i++) { scanf("%d%d",&x,&y); add(S,i,x); sum+=x; while(y--) { scanf("%d%d",&z,&w); add(i,z+n,w); } } for(i=1;i<=m;i++) { scanf("%d",&x); add(i+n,T,x); } dinic(); }
BZOJ_1391_[Ceoi2008]order_最大权闭合子图
标签:input 现在 lin bool memset ring algo names MF
原文地址:https://www.cnblogs.com/suika/p/8967331.html