描述
传送门:poj-2195
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
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.
Examples
intput
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
182 2
.m
H.
5 5
HH..m
.....
.....
.....
mm..H
7 8
...H....
...H....
...H....
mmmHmmmm
...H....
...H....
...H....
0 0output
1
2
32
10
28
大致题意
m表示人,H表示房子,每个房子只能进一个人,房子数等于人数。要让所有人到自己的房子的距离和最小,请问这个距离和是多少。$(x_1,y_1)$和$(x_2,y_2)$之间的距离就是$|x_1 - x_2|+|y_1-y_2|$.
思路
- 加入超级源点s和超级汇点t,所有房子和s连一条边,所有人和t连一条边,从s到t跑最小费用最大流。
代码
1 |
|
本文介绍了一种利用最小费用最大流算法解决POJ-2195问题的方法,该问题涉及计算最少花费将所有人物移动到不同房屋的总距离。通过构建超级源点和超级汇点,连接人物与房屋,运行最小费用最大流算法,以找到最优解。

&spm=1001.2101.3001.5002&articleId=99699770&d=1&t=3&u=1c58ae924a43421c8879dbe7af0ae010)
616

被折叠的 条评论
为什么被折叠?



