POJ - 2195 Going Home(最小费用最大流)

1、N*M的矩阵中,有k个人和k个房子,每个人分别进入一个房子中,求所有人移动的最小距离。

2、人看成源点,房子看成汇点,求最小费用最大流。

建图--

人指向房子,容量为1,费用为人到房子的曼哈顿距离。

建立超级源点和超级汇点:超级源点指向人,容量为1,费用为0;超级汇点指向房子,容量为1,费用为0。

求超级源点到超级汇点的最小费用最大流即可。

ps:容量为什么都设为1?---有待研究。。

3、

1、Bellman-Ford:

#include<iostream>
#include<stdio.h>
#include<vector>
#include<string.h>
#include<queue>
#include<algorithm>
using namespace std;

const int maxn=256;
const int INF=0x3f3f3f3f;

struct Edge{
    int from,to,cap,flow,cost;
    Edge(int u,int v,int c,int f,int w):from(u),to(v),cap(c),flow(f),cost(w){}
};

struct MCMF{
    int n,m;
    vector<Edge>edges;
    vector<int>G[maxn];
    int inq[maxn];//是否在队列中
    int d[maxn];//Bellman-Ford
    int p[maxn];//上一条弧
    int a[maxn];//可改进量

    void init(int n){
        this->n=n;
        for(int i=0;i<n;i++)G[i].clear();
        edges.clear();
    }

    void AddEdge(int from,int to,int cap,int cost){
        edges.push_back(Edge(from,to,cap,0,cost));
        edges.push_back(Edge(to,from,0,0,-cost));
        m=edges.size();
        G[from].push_back(m-2);
        G[to].push_back(m-1);
    }

    bool BellmanFord(int s,int t,int &flow,long long &cost){
        for(int i=0;i<n;i++)d[i]=INF;
        memset(inq,0,sizeof(inq));
        d[s]=0;inq[s]=1;p[s]=0;a[s]=INF;

        queue<int>Q;
        Q.push(s);
        while(!Q.empty()){
            int u=Q.front();Q.pop();
            inq[u]=0;
            for(int i=0;i<(int)G[u].size();i++){
                Edge &e=edges[G[u][i]];
                if(e.cap>e.flow&&d[e.to]>d[u]+e.cost){
                    d[e.to]=d[u]+e.cost;
                    p[e.to]=G[u][i];
                    a[e.to]=min(a[u],e.cap-e.flow);
                    if(!inq[e.to]){Q.push(e.to);inq[e.to]=1;}
                }
            }
        }
        if(d[t]==INF)return false;
        flow+=a[t];
        cost+=(long long)d[t]*(long long)a[t];
        for(int u=t;u!=s;u=edges[p[u]].from){
            edges[p[u]].flow+=a[t];
            edges[p[u]^1].flow-=a[t];
        }
        return true;
    }

    //需要保证初始网络中没有负权圈
    int MincostMaxflow(int s,int t,long long &cost){
        int flow=0;cost=0;
        while(BellmanFord(s,t,flow,cost));
        return flow;
    }
}MM;

struct point{
    int x;
    int y;
};
point man[128];
point house[128];
int man_sum;
int house_sum;

int main(){
    int N,M;
    char str[128];
    int S,T;
    long long mincost;
    int maxflow;

    while(~scanf("%d%d",&N,&M)){
        if(N==0&&M==0)break;
        man_sum=0;
        house_sum=0;

        for(int i=0;i<N;++i){
            scanf("%s",str);
            for(int j=0;j<M;++j){
                if(str[j]==‘m‘){
                    man[man_sum].x=i;
                    man[man_sum++].y=j;
                }
                else if(str[j]==‘H‘){
                    house[house_sum].x=i;
                    house[house_sum++].y=j;
                }
            }
        }

        MM.init(man_sum+house_sum+2);
        for(int i=0;i<man_sum;++i){
            for(int j=0;j<house_sum;++j){
                MM.AddEdge(i,man_sum+j,1,abs(man[i].x-house[j].x)+abs(man[i].y-house[j].y));
            }
        }

        S=man_sum+house_sum;
        for(int i=0;i<man_sum;++i){
            MM.AddEdge(S,i,1,0);
        }

        T=man_sum+house_sum+1;
        for(int i=0;i<house_sum;++i){
            MM.AddEdge(man_sum+i,T,1,0);
        }

        maxflow=MM.MincostMaxflow(S,T,mincost);
        printf("%lld\n",mincost);
    }
    return 0;
}

2、SPFA版费用流:

/*
SPFA版费用流
最小费用最大流,求最大费用最大流只需要取相反数,结果取相反数即可。
点的总数为N,点的编号0~N-1
*/
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<queue>
#include<algorithm>
using namespace std;

const int MAXN=256;
const int MAXM=20500;
const int INF=0x3f3f3f3f;
struct Edge{
    int to,next,cap,flow,cost;
}edge[MAXM];
int head[MAXN],tol;
int pre[MAXN],dis[MAXN];
bool vis[MAXN];
int N;//节点总个数,节点编号从0~N-1
void init(int n){
    N=n;
    tol=0;
    memset(head,-1,sizeof(head));
}
void addedge(int u,int v,int cap,int cost){
    edge[tol].to=v;
    edge[tol].cap=cap;
    edge[tol].cost=cost;
    edge[tol].flow=0;
    edge[tol].next=head[u];
    head[u]=tol++;
    edge[tol].to=u;
    edge[tol].cap=0;
    edge[tol].cost=-cost;
    edge[tol].flow=0;
    edge[tol].next=head[v];
    head[v]=tol++;
}
bool spfa(int s,int t){
    queue<int>q;
    for(int i=0;i<N;i++){
        dis[i]=INF;
        vis[i]=false;
        pre[i]=-1;
    }
    dis[s]=0;
    vis[s]=true;
    q.push(s);
    while(!q.empty()){
        int u=q.front();
        q.pop();
        vis[u]=false;
        for(int i=head[u];i!=-1;i=edge[i].next){
            int v=edge[i].to;
            if(edge[i].cap>edge[i].flow&&dis[v]>dis[u]+edge[i].cost){
                dis[v]=dis[u]+edge[i].cost;
                pre[v]=i;
                if(!vis[v]){
                    vis[v]=true;
                    q.push(v);
                }
            }
        }
    }
    if(pre[t]==-1)return false;
    else return true;
}
//返回的是最大流,cost存的是最小费用
int minCostMaxflow(int s,int t,int &cost){
    int flow=0;
    cost=0;
    while(spfa(s,t)){
        int Min=INF;
        for(int i=pre[t];i!=-1;i=pre[edge[i^1].to]){
            if(Min>edge[i].cap-edge[i].flow)
                Min=edge[i].cap-edge[i].flow;
        }
        for(int i=pre[t];i!=-1;i=pre[edge[i^1].to]){
            edge[i].flow+=Min;
            edge[i^1].flow-=Min;
            cost+=edge[i].cost*Min;
        }
        flow+=Min;
    }
    return flow;
}

struct point{
    int x;
    int y;
};
point man[128];
point house[128];
int man_sum;
int house_sum;

int main(){
    int N,M;
    char str[128];
    int S,T;
    int mincost;
    int maxflow;

    while(~scanf("%d%d",&N,&M)){
        if(N==0&&M==0)break;
        man_sum=0;
        house_sum=0;

        for(int i=0;i<N;++i){
            scanf("%s",str);
            for(int j=0;j<M;++j){
                if(str[j]==‘m‘){
                    man[man_sum].x=i;
                    man[man_sum++].y=j;
                }
                else if(str[j]==‘H‘){
                    house[house_sum].x=i;
                    house[house_sum++].y=j;
                }
            }
        }

        init(man_sum+house_sum+2);
        for(int i=0;i<man_sum;++i){
            for(int j=0;j<house_sum;++j){
                addedge(i,man_sum+j,1,abs(man[i].x-house[j].x)+abs(man[i].y-house[j].y));
            }
        }

        S=man_sum+house_sum;
        for(int i=0;i<man_sum;++i){
            addedge(S,i,1,0);
        }

        T=man_sum+house_sum+1;
        for(int i=0;i<house_sum;++i){
            addedge(man_sum+i,T,1,0);
        }

        maxflow=minCostMaxflow(S,T,mincost);
        printf("%d\n",mincost);
    }
    return 0;
}

3、zkw费用流:

/*
zkw费用流
对于二分图类型的比较高效
*/
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;

const int MAXN=256;
const int MAXM=20500;
const int INF=0x3f3f3f3f;
struct Edge{
    int to,next,cap,flow,cost;
    Edge(int _to=0,int _next=0,int _cap=0,int _flow=0,int _cost=0):
        to(_to),next(_next),cap(_cap),flow(_flow),cost(_cost){}
}edge[MAXM];
struct ZKW_MinCostMaxFlow{
    int head[MAXN],tot;
    int cur[MAXN];
    int dis[MAXN];
    bool vis[MAXN];
    int ss,tt,N;//源点、汇点和点的总个数(编号是0~N-1),不需要额外赋值,调用会直接赋值
    int min_cost,max_flow;
    void init(){
        tot=0;
        memset(head,-1,sizeof(head));
    }
    void addedge(int u,int v,int cap,int cost){
        edge[tot]=Edge(v,head[u],cap,0,cost);
        head[u]=tot++;
        edge[tot]=Edge(u,head[v],0,0,-cost);
        head[v]=tot++;
    }
    int aug(int u,int flow){
        if(u==tt)return flow;
        vis[u]=true;
        for(int i=cur[u];i!=-1;i=edge[i].next){
            int v=edge[i].to;
            if(edge[i].cap>edge[i].flow&&!vis[v]&&dis[u]==dis[v]+edge[i].cost){
                int tmp=aug(v,min(flow,edge[i].cap-edge[i].flow));
                edge[i].flow+=tmp;
                edge[i^1].flow-=tmp;
                cur[u]=i;
                if(tmp)return tmp;
            }
        }
        return 0;
    }
    bool modify_label(){
        int d=INF;
        for(int u=0;u<N;u++)
            if(vis[u])
                for(int i=head[u];i!=-1;i=edge[i].next){
                    int v=edge[i].to;
                    if(edge[i].cap>edge[i].flow&&!vis[v])
                        d=min(d,dis[v]+edge[i].cost-dis[u]);
                }
        if(d==INF)return false;
        for(int i=0;i<N;i++)
            if(vis[i]){
                vis[i]=false;
                dis[i]+=d;
            }
        return true;
    }
    /*
    直接调用获取最小费用和最大流
    输入:start-源点,end-汇点,n-点的总个数(编号从0开始)
    返回值:pair<int,int>第一个是最小费用,第二个是最大流
    */
    pair<int,int> mincostmaxflow(int start,int end,int n){
        ss=start,tt=end,N=n;
        min_cost=max_flow=0;
        for(int i=0;i<n;i++)dis[i]=0;
        while(1){
            for(int i=0;i<n;i++)cur[i]=head[i];
            while(1){
                for(int i=0;i<n;i++)vis[i]=false;
                int tmp=aug(ss,INF);
                if(tmp==0)break;
                max_flow+=tmp;
                min_cost+=tmp*dis[ss];
            }
            if(!modify_label())break;
        }
        return make_pair(min_cost,max_flow);
    }
}solve;

struct point{
    int x;
    int y;
};
point man[128];
point house[128];
int man_sum;
int house_sum;

int main(){
    int N,M;
    char str[128];
    int S,T;
    //int mincost;
    //int maxflow;
    pair<int,int>pr;

    while(~scanf("%d%d",&N,&M)){
        if(N==0&&M==0)break;
        man_sum=0;
        house_sum=0;

        for(int i=0;i<N;++i){
            scanf("%s",str);
            for(int j=0;j<M;++j){
                if(str[j]==‘m‘){
                    man[man_sum].x=i;
                    man[man_sum++].y=j;
                }
                else if(str[j]==‘H‘){
                    house[house_sum].x=i;
                    house[house_sum++].y=j;
                }
            }
        }

        solve.init();
        for(int i=0;i<man_sum;++i){
            for(int j=0;j<house_sum;++j){
                solve.addedge(i,man_sum+j,1,abs(man[i].x-house[j].x)+abs(man[i].y-house[j].y));
            }
        }

        S=man_sum+house_sum;
        for(int i=0;i<man_sum;++i){
            solve.addedge(S,i,1,0);
        }

        T=man_sum+house_sum+1;
        for(int i=0;i<house_sum;++i){
            solve.addedge(man_sum+i,T,1,0);
        }

        pr=solve.mincostmaxflow(S,T,man_sum+house_sum+2);
        printf("%d\n",pr.first);
    }
    return 0;
}

时间: 2024-10-19 04:50:34

POJ - 2195 Going Home(最小费用最大流)的相关文章

POJ 2195 Going Home (最小费用最大流)

题目链接:http://poj.org/problem?id=2195 题意:n*m的矩阵,地图上有若干个人(m)和房子(H),且人与房子的数量一致.man每移动一格费用为1,一个房子只能住一个人.现在要求所有的人出发,都入住房子,求最少话费. 思路:建立一个超级源点和汇点,源点与人相连费用为0,容量为1,人与房子相连,费用为人与房子的距离,容量为1,房子与汇点相连,费用为0,容量为1 #include <iostream> #include <cstdlib> #include

POJ 2195 地图的最小费用最大流

思路:这题刚开始看就知道是最小费用最大流了,因为求出最优嘛,而且要m,H要一一对应,所以不是二分图匹配就是最小费用最大流. 不过,刚开始还在想每个m与H之间的最小花费如何求,难道要用dfs搜索吗?这样想之后看了下题目给的时间是1000ms,然后就把dfs搜索m与H之间的最短距离排除了.然后想了想,其实尼玛太简单了,因为题目说了只能垂直与竖直的走,所以最短距离不就是两个横坐标相减与两个纵坐标相减之和嘛! 然后每对m与H之间都连边,流量为1(因为每对匹配不能重复),费用为它们之间的距离即花费:然后建

POJ 2195 - Going Home - [最小费用最大流][MCMF模板]

题目链接:http://poj.org/problem?id=2195 Time Limit: 1000MS Memory Limit: 65536K Description On a grid map there are n little men and n houses. In each unit time, every little man can move one unit step, either horizontally, or vertically, to an adjacent

POJ 2195 Going Home 最小费用最大流 尼玛,心累

D - Going Home Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 2195 Appoint description: Description On a grid map there are n little men and n houses. In each unit time, every little man can mo

POJ 2516 Minimum Cost(最小费用最大流,坑题)

题目链接:http://poj.org/problem?id=2516 题意:有N个店,M个供货商,K种商品.已知供货商的仓库里每种商品的数量以及每种商品运送到每个店的费用,每个店铺对各种商品的需求数量,求最少话费. Input  第一行:N,M,K. 然后1 - N行,每行 K列 ,第I行第J个数代表 第I个店铺 需要第J种物品多少件. 然后 N+1 - M行  ,每行 K列 , 第I行第J个数代表 第I个供货商 有第J种物品多少件. 然后是K个矩阵  ,每个N行M列,第ji个矩阵的第i行第j

POJ 2516 Minimum Cost (最小费用最大流)

Minimum Cost Time Limit: 4000MS   Memory Limit: 65536K       Description Dearboy, a goods victualer, now comes to a big problem, and he needs your help. In his sale area there are N shopkeepers (marked from 1 to N) which stocks goods from him.Dearboy

POJ 3680: Intervals【最小费用最大流】

题目大意:你有N个开区间,每个区间有个重量wi,你要选择一些区间,使得满足:每个点被不超过K个区间覆盖的前提下,重量最大 思路:感觉是很好想的费用流,把每个区间首尾相连,费用为该区间的重量的相反数(由于要最大,所以是求最大费用最大流),容量为1,至于不超过K的限制,只要从源点到第一个点的流量为K就行,剩下每个相邻的点相连,费用为0,流量只要大于的等于K就可以(我取的正无穷) //poj3680 #include <stdio.h> #include <iostream> #incl

POJ 2135 Farm Tour [最小费用最大流]

题意: 有n个点和m条边,让你从1出发到n再从n回到1,不要求所有点都要经过,但是每条边只能走一次.边是无向边. 问最短的行走距离多少. 一开始看这题还没搞费用流,后来搞了搞再回来看,想了想建图不是很难,因为要保证每条边只能走一次,那么我们把边拆为两个点,一个起点和终点,容量是1,权重是这条路的长度.然后两个端点分别向起点连接容量是1权重是0的边,终点分别向两个端点连容量是1权重是0的边,从源点到1连容量为2权重为0的边,从n到汇点连容量为2权重为0的边. #include<stdio.h>

POJ 2195:Going Home(最小费用最大流)

http://poj.org/problem?id=2195 题意:有一个地图里面有N个人和N个家,每走一格的花费是1,问让这N个人分别到这N个家的最小花费是多少. 思路:通过这个题目学了最小费用最大流.最小费用最大流是保证在流量最大的情况下,使得费用最小. 建图是把S->人->家->T这些边弄上形成一个网络,边的容量是1(因为一个人只能和一个家匹配),边的费用是曼哈顿距离,反向边的费用是-cost. 算法的思想大概是通过SPFA找增广路径,并且找的时候费用是可以松弛的.当找到这样一条增

poj 2195 最小费用最大流模板

/*Source Code Problem: 2195 User: HEU_daoguang Memory: 1172K Time: 94MS Language: G++ Result: Accepted Source Code */ #include <iostream> #include <stdio.h> #include <queue> #include <math.h> #include <string.h> using namespa