洛谷 P4015 运输问题 题解

题目链接

题目大意

W W W 公司有 m m m 个仓库和 n n n 个零售商店。第 i i i 个仓库有 a i a_i ai​ 个单位的货物;第 j j j 个零售商店需要 b j b_j bj 个单位的货物。

货物供需平衡.

从第 i i i 个仓库运送每单位货物到第 j j j 个零售商店的费用为 c i j c_{ij} cij​​ 。

试设计一个将仓库中所有货物运送到零售商店的运输方案,使总运输费用最少。

题解

费用流模板题。

建源点和汇点连边。

源点向每个仓库 i i i连边,流量为仓库 i i i的货物数量,费用为 0 0 0.
每个商店 j j j向汇点连边,流量为商店 j j j的需求量,费用为 0 0 0.

以上两种边的目的都是限制流量,同时因为货物供需平衡,最后一定能全部满足。

最后每个仓库 i i i向商店 j j j连边,流量为 i n f inf inf,费用为 c i j c_{ij} cij. 如果这种边通过流量,那么就说明仓库 i i i运送了货物到商店 j j j.

最后跑费用流就好了。

代码

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;

const int maxn=105;
const int maxm=1000005;
const int inf=0x7f7f7f7f;
const long long linf=1e18;

struct node
{
	int to,next,flow;
	long long cost;
} edge[maxm<<1];

bool vis[maxn<<2];
int head[maxn<<2],k,s,t;
long long dist[maxn<<2],tot_cost;

void add(int u,int v,int w,long long c)
{
	edge[++k].to=v;
	edge[k].next=head[u];
	head[u]=k;
	edge[k].flow=w;
	edge[k].cost=c;
	swap(u,v);
	edge[++k].to=v;
	edge[k].next=head[u];
	head[u]=k;
	edge[k].flow=0;
	edge[k].cost=-c;
}
bool spfa()
{
	for(int i=0;i<=t;i++) dist[i]=linf;
	memset(vis,false,sizeof(vis));
	queue<int> q;dist[t]=0;q.push(t);
	while(!q.empty())
	{
		int x=q.front();q.pop();vis[x]=false;
		for(int i=head[x];i;i=edge[i].next)
		{
			if(dist[edge[i].to]>dist[x]-edge[i].cost&&edge[i^1].flow)
			{
				dist[edge[i].to]=dist[x]-edge[i].cost;
				if(!vis[edge[i].to])
				{
					vis[edge[i].to]=true;
					q.push(edge[i].to);
				}
			}
		}
	}
	return dist[s]!=linf;
}
int dfs(int x,int f)
{
	vis[x]=true;
	if(x==t||!f) return f;
	int flow=0;
	for(int i=head[x];i;i=edge[i].next)
	{
		if(vis[edge[i].to]) continue;
		if(dist[edge[i].to]==dist[x]-edge[i].cost&&edge[i].flow)
		{
			int temp=dfs(edge[i].to,min(f-flow,edge[i].flow));
			edge[i].flow-=temp;
			edge[i^1].flow+=temp;
			flow+=temp;
			tot_cost+=(long long)temp*edge[i].cost;
			if(f==flow) break;
		}
	}
	return flow;
}
void zkw()
{
	tot_cost=0;
	while(spfa())
	{
		vis[t]=true;
		while(vis[t])
		{
			memset(vis,false,sizeof(vis));
			dfs(s,inf);
		}
	}
	if(tot_cost>=0) printf("%lld\n",tot_cost);
	else printf("%lld\n",-tot_cost);
}
int n,m,a[maxn],b[maxn],cost[maxn][maxn];

int main()
{
	#ifdef lemon
	freopen("4015.txt","r",stdin);
	#endif
	scanf("%d%d",&m,&n);s=0;t=m+n+1;k=1;
	for(int i=1;i<=m;i++) scanf("%d",&a[i]);
	for(int i=1;i<=n;i++) scanf("%d",&b[i]);
	//1-n store
	//n+1-m repo
	//0 source
	//n+m+1
	for(int i=1;i<=m;i++)
		for(int j=1;j<=n;j++)
			scanf("%d",&cost[i][j]);
	for(int i=1;i<=n;i++) add(i,t,b[i],0);
	for(int i=1;i<=m;i++) add(s,i+n,a[i],0);
	for(int i=1;i<=m;i++)
		for(int j=1;j<=n;j++)
			add(i+n,j,inf,cost[i][j]);
	zkw();
	memset(head,0,sizeof(head));k=1;
	for(int i=1;i<=n;i++) add(i,t,b[i],0);
	for(int i=1;i<=m;i++) add(s,i+n,a[i],0);
	for(int i=1;i<=m;i++)
		for(int j=1;j<=n;j++)
			add(i+n,j,inf,-cost[i][j]);
	zkw();
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值