POJ 2195 Going Home

最小费用最大流

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

//设置节点数量
const int maxn=1000+10;
const int INF=0x7FFFFFFF;
struct Edge
{
    int from,to,cap,flow,cost;
};
int n,m,len,s,t;
vector<Edge> edges;
vector<int> G[maxn];
int inq[maxn];
int d[maxn];
int p[maxn];
int a[maxn];
struct Point
{
    int x,y,id;
} M[maxn],H[maxn];
char Map[maxn][maxn];
int R,C,msum,hsum;


void init()
{
    for(int i=0; i<maxn; i++) G[i].clear();
    edges.clear();
    msum=1;
    hsum=1;
    s=0;
    t=222;
}

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
    });
    len=edges.size();
    G[from].push_back(len-2);
    G[to].push_back(len-1);
}

bool BellmanFord(int s,int t,int &flow,int &cost)
{

    for(int i=0; i<maxn; i++) d[i]=INF;

    memset(inq,0,sizeof(inq));
    memset(p,-1,sizeof(p));
    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<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+=d[t]*a[t];
    int u=t;
    while(u!=s)
    {
        edges[p[u]].flow+=a[t];
        edges[p[u]^1].flow-=a[t];
        u=edges[p[u]].from;
    }
    return true;
}

void Mincost (int s,int t)
{
    int flow=0,cost=0;
    while(BellmanFord(s,t,flow,cost));
    //printf("最大流:%d
",flow);
    printf("%d
",cost);
}

int main()
{
    while(~scanf("%d%d",&R,&C))
    {
        if(!R&&!C) break;
        init();
        for(int i=0; i<R; i++) scanf("%s",Map[i]);
        for(int i=0; i<R; i++)
            for(int j=0; j<C; j++)
            {
                if(Map[i][j]=='m')
                {
                    M[msum].id=msum;
                    M[msum].x=i;
                    M[msum].y=j;
                    msum++;
                }
                if(Map[i][j]=='H')
                {
                    H[hsum].id=hsum+105;
                    H[hsum].x=i;
                    H[hsum].y=j;
                    hsum++;
                }
            }

        for(int i=1; i<msum; i++) Addedge(s,i,1,0);
        for(int i=106; i<=hsum+105-1; i++) Addedge(i,t,1,0);

        for(int i=1; i<msum; i++)
            for(int j=1; j<hsum; j++)
            {
                int Cost=abs(M[i].x-H[j].x)+abs(M[i].y-H[j].y);
                Addedge(M[i].id,H[j].id,1,Cost);
            }
        Mincost(s,t);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/zufezzt/p/4738439.html