hdu1533 最小費用流

來源:互聯網
上載者:User
Going Home

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2018    Accepted Submission(s): 991


Problem DescriptionOn 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 point. For each little man, you need to pay a $1 travel fee for every step he moves, until he enters
a house. The task is complicated with the restriction that each house can accommodate only one little man. 

Your task is to compute the minimum amount of money you need to pay in order to send these n little men into those n different houses. The input is a map of the scenario, a '.' means an empty space, an 'H' represents a house on that point, and am 'm' indicates
there is a little man on that point. 

You can think of each point on the grid map as a quite large square, so it can hold n little men at the same time; also, it is okay if a little man steps on a grid with a house without entering that house. 


InputThere are one or more test cases in the input. Each case starts with a line giving two integers N and M, where N is the number of rows of the map, and M is the number of columns. The rest of the input will be N lines describing the map. You may assume both
N and M are between 2 and 100, inclusive. There will be the same number of 'H's and 'm's on the map; and there will be at most 100 houses. Input will terminate with 0 0 for N and M. 


OutputFor each test case, output one line with the single integer, which is the minimum amount, in dollars, you need to pay.  


Sample Input

2 2.mH.5 5HH..m...............mm..H7 8...H.......H.......H....mmmHmmmm...H.......H.......H....0 0
 


Sample Output

21028
 


SourcePacific Northwest 2004 


Recommendlwg 雖然慢的點 但還是過了~~~先廣搜出個源點到家的距離,建邊流量為一,費用為距離。再加入超級源點,超級匯點~~運行一遍最大流。貌似用二分符合代碼更少~但主要想費用流~~代碼有點長~~

#include <iostream>#include <cstdio>#include <cstring>#include <queue>#define inf 99999999using namespace std;struct node{    int u,v,f,c;};int xx[4]={0,1,0,-1};int yy[4]={1,0,-1,0};node e[40000];int num[120][120];char map[120][120];int d[120][120];int vis[120][120],p[205],preedge[205];int cc,k,ans_flow,ans_cost;int cost[250];int first[205];int next[40000],n,m;inline void add_edge(int u,int v,int f,int c){    e[cc].u=u;    e[cc].v=v;    e[cc].f=f;    e[cc].c=c;    next[cc]=first[u];    first[u]=cc;    cc++;    e[cc].v=u;    e[cc].u=v;    e[cc].f=0;    e[cc].c=-c;    next[cc]=first[v];    first[v]=cc;    cc++;}bool spfa(int s,int t){    int i;    for(i=0;i<=t;i++)        cost[i]=inf;    memset(p,-1,sizeof(p));    memset(preedge,-1,sizeof(preedge));    int inq[205];    memset(inq,0,sizeof(inq));    queue<int> q;    q.push(s);    cost[s]=0;    while(!q.empty())    {        int u=q.front();        q.pop();        inq[u]=0;        for(i=first[u];i!=-1;i=next[i])        {            if(e[i].f)            {                int v=e[i].v;                if(cost[v]>cost[u]+e[i].c)                {                    p[v]=u;                    preedge[v]=i;                    cost[v]=cost[u]+e[i].c;                    if(!inq[v])                    {                        inq[v]=1;                        q.push(v);                    }                }            }        }    }    if(cost[t]>=inf)        return false;    else        return true;}void min_cost_flow(int s,int t){    ans_flow=0;    ans_cost=0;    while(spfa(s,t))    {        int u=t;        int mm=inf;        while(p[u]!=-1)        {            mm=min(mm,e[preedge[u]].f);            u=p[u];        }        u=t;        while(p[u]!=-1)        {            e[preedge[u]].f-=mm;            e[preedge[u]^1].f+=mm;            u=p[u];        }        ans_flow+=mm;        ans_cost+=mm*cost[t];        //printf("asd %d\n",spfa(s,t));    }}void bfs(int now){    int x=now/m;    int y=now%m;    memset(vis,0,sizeof(vis));    memset(d,0,sizeof(d));    vis[x][y]=1;    queue<int> q;    q.push(now);    while(!q.empty())    {        int tt=q.front();        q.pop();        x=tt/m;        y=tt%m;        int i;        for(i=0;i<4;i++)        {            int newx=x+xx[i];            int newy=y+yy[i];            if((vis[newx][newy])||(newx<0||newx>=n)||(newy<0||newy>=m))                continue;            d[newx][newy]=d[x][y]+1;            vis[newx][newy]=1;            q.push(newx*m+newy);            if(map[newx][newy]=='H')            {                add_edge(num[now/m][now%m],num[newx][newy],1,d[newx][newy]);            }        }    }}int main(){    while(scanf("%d%d",&n,&m))    {        if(n==0&&m==0)            break;        int i;        queue<int> qq;        cc=0;        k=1;        memset(first,-1,sizeof(first));        memset(next,-1,sizeof(next));        for(i=0;i<n;i++)        {            scanf("%s",map[i]);            int j;            for(j=0;j<m;j++)            {                if(map[i][j]=='m')                {                    qq.push(i*m+j);                    num[i][j]=k;                    add_edge(0,k++,1,0);                }                else if(map[i][j]=='H')                {                    num[i][j]=k;                    add_edge(k++,202,1,0);                }            }        }        while(!qq.empty())        {            int u=qq.front();            qq.pop();            bfs(u);        }        int j;        /*for(i=0;i<=2;i++)        {            for(j=first[i];j!=-1;j=next[j])            {                printf(" %d %d %d",e[j].v,e[j].f,e[j].c);            }            printf("\n");        }*/        min_cost_flow(0,202);        printf("%d\n",ans_cost);    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.