BZOJ3511 土地划分

一眼最小割

考虑划为S集代表A国,划为T集代表B国

建图:S连每个点流量VA,每个点连T流量VB

对于每条边,两个端点点之间连双向边流量EC

新建一个点X,S连X流量EA,X连两个端点流量INF

再新建一个点Y,两个端点连Y流量INF,Y连T流量EB

认为1号点VA=INF,VB=0

n号点VA=0,VB=INF

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<vector>
#include<map>
#include<set>
#include<bitset>
#include<queue>
#include<stack>
using namespace std;
#define MAXN 100010
#define MAXM 4000010
#define INF 1000000000
#define MOD 1000000007
#define eps 1e-8
#define ll long long
struct vec{
	int to;
	int fro;
	int v;
};
vec mp[MAXM];
int tai[MAXN],cnt=1;
int q[MAXN],hd,tl;
int d[MAXN];
int s,t;
int ans;
inline void be(int x,int y,int z){
	mp[++cnt].to=y;
	mp[cnt].fro=tai[x];
	tai[x]=cnt;
	mp[cnt].v=z;
}
inline void bse(int x,int y,int z){
	be(x,y,z);
	be(y,x,0);
}
inline void bde(int x,int y,int z){
	be(x,y,z);
	be(y,x,z);
}
int bfs(){
	int i,x,y;
	memset(d,0,sizeof(d));
	hd=tl=0;
	d[s]=1;
	q[tl++]=s;
	while(hd!=tl){
		x=q[hd++];
		for(i=tai[x];i;i=mp[i].fro){
			y=mp[i].to;
			if(!d[y]&&mp[i].v){
				d[y]=d[x]+1;
				q[tl++]=y;
			}
		}
	}
	return d[t];
}
int dfs(int x,int mx){
	if(x==t){
		return mx;
	}
	int i,y,re=0,tmp;
	for(i=tai[x];i;i=mp[i].fro){
		y=mp[i].to;
		if(d[y]==d[x]+1&&mp[i].v){
			tmp=dfs(y,min(mp[i].v,mx));
			re+=tmp;
			mx-=tmp;
			mp[i].v-=tmp;
			mp[i^1].v+=tmp;
			if(!mx){
				return re;
			}
		}
	}
	if(!re){
		d[x]=0;
	}
	return re;
}
int n,m,tot;
int main(){
	int i,x,y,z;
	scanf("%d%d",&n,&m);
	s=n+1;
	t=s+1;
	tot=t;
	ans+=INF*2;
	bse(s,1,INF);
	bse(n,t,INF);
	for(i=2;i<n;i++){
		scanf("%d",&x);
		bse(s,i,x);
		ans+=x;
	}
	for(i=2;i<n;i++){
		scanf("%d",&x);
		bse(i,t,x);
		ans+=x;
	}
	for(i=1;i<=m;i++){
		scanf("%d%d",&x,&y);
		scanf("%d",&z);
		ans+=z;
		tot++;
		bse(tot,x,INF);
		bse(tot,y,INF);
		bse(s,tot,z);
		scanf("%d",&z);
		ans+=z;
		tot++;
		bse(x,tot,INF);
		bse(y,tot,INF);
		bse(tot,t,z);
		scanf("%d",&z);
		bde(x,y,z);
	}
	while(bfs()){
		ans-=dfs(s,INF);
	}
	printf("%d\n",ans-INF*2);
	return 0;
}

/*
3 3
8
9
1 2 2 6 2
2 3 8 5 7
1 3 9 4 1

*/


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值