poj2195

来源:互联网 发布:斯沃数控仿真软件 编辑:程序博客网 时间:2024/05/24 01:09

Going Home
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 23241 Accepted: 11702

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 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.

Input

There 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.

Output

For 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

二分图的最佳匹配问题,边的权值为曼哈顿距离即可,用到km算法具体在我的上一篇博客中有详细的讲解

#include<cstdio>#include<string>#include<cstring>#include<cstdlib>#include<cmath>#include<iostream>#include<algorithm>#include<vector>#include<queue>#include<map>#include<set>#include<stack>using namespace std;const int maxn=105;const int inf=99999999;bool usedm[maxn],usedh[maxn];int w[maxn][maxn];int line[maxn];int cntm,cnth;char mp[maxn][maxn];int manx[maxn],many[maxn],houx[maxn],houy[maxn];int cm[maxn],ch[maxn];bool find(int x){usedm[x]=true;for(int i=0;i<cnth;i++){if(usedh[i]==false&&(cm[x]+ch[i]==w[x][i])){usedh[i]=true;if(line[i]==-1||find(line[i])){line[i]=x;return true;}}}return false;}int km(){for(int i=0;i<cntm;i++){while(true){int d=inf;memset(usedm,false,sizeof(usedm));memset(usedh,false,sizeof(usedh));if(find(i)) break;for(int j=0;j<cntm;j++){if(usedm[j]){for(int k=0;k<cnth;k++){if(usedh[k]==false){d=min(d,cm[j]+ch[k]-w[j][k]);}}}}if(d==inf)return -1;for(int j=0;j<cntm;j++){if(usedm[j]){cm[j]-=d;}}for(int j=0;j<cnth;j++){if(usedh[j]){ch[j]+=d;}}}}int ans=0;for(int i=0;i<cnth;i++){ans+=w[line[i]][i];//printf("%d %d %d\n",i,line[i],ans);}return ans;}int main(){freopen("test.txt","r",stdin);int n,m;int i,j;while(~scanf("%d %d",&n,&m)&&n&&m){for(i=0;i<n;i++){scanf("%s",mp[i]);//puts(mp[i]);}cntm=0;cnth=0;for(i=0;i<n;i++){for(j=0;j<m;j++){if(mp[i][j]=='m'){manx[cntm]=i;many[cntm]=j;cntm++;//printf("cntm=%d x=%d y=%d\n",cntm,i,j);}else if(mp[i][j]=='H'){houx[cnth]=i;houy[cnth]=j;cnth++;//printf("cnth=%d x=%d y=%d\n",cnth,i,j);}}}//printf("\n");memset(cm,0,sizeof(cm));memset(ch,0,sizeof(ch));for(i=0;i<cntm;i++){int d=0-inf;for(j=0;j<cnth;j++){w[i][j]=abs(manx[i]-houx[j])+abs(many[i]-houy[j]);w[i][j]=0-w[i][j];//printf("%d %d %d\n",i,j,w[i][j]);d=max(w[i][j],d);}cm[i]=d;//printf("%d %d\n",i,d);}memset(line,-1,sizeof(line));printf("%d\n",0-km());}return 0;}



原创粉丝点击