POJ——T 3020 Antenna Placement

http://poj.org/problem?id=3020

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 9844   Accepted: 4868

Description

The Global Aerial Research Centre has been allotted the task of building the fifth generation of mobile phone nets in Sweden. The most striking reason why they got the job, is their discovery of a new, highly noise resistant, antenna. It is called 4DAir, and comes in four types. Each type can only transmit and receive signals in a direction aligned with a (slightly skewed) latitudinal and longitudinal grid, because of the interacting electromagnetic field of the earth. The four types correspond to antennas operating in the directions north, west, south, and east, respectively. Below is an example picture of places of interest, depicted by twelve small rings, and nine 4DAir antennas depicted by ellipses covering them. 
 
Obviously, it is desirable to use as few antennas as possible, but still provide coverage for each place of interest. We model the problem as follows: Let A be a rectangular matrix describing the surface of Sweden, where an entry of A either is a point of interest, which must be covered by at least one antenna, or empty space. Antennas can only be positioned at an entry in A. When an antenna is placed at row r and column c, this entry is considered covered, but also one of the neighbouring entries (c+1,r),(c,r+1),(c-1,r), or (c,r-1), is covered depending on the type chosen for this particular antenna. What is the least number of antennas for which there exists a placement in A such that all points of interest are covered? 

Input

On the first row of input is a single positive integer n, specifying the number of scenarios that follow. Each scenario begins with a row containing two positive integers h and w, with 1 <= h <= 40 and 0 < w <= 10. Thereafter is a matrix presented, describing the points of interest in Sweden in the form of h lines, each containing w characters from the set ['*','o']. A '*'-character symbolises a point of interest, whereas a 'o'-character represents open space. 

Output

For each scenario, output the minimum number of antennas necessary to cover all '*'-entries in the scenario's matrix, on a row of its own.

Sample Input

2
7 9
ooo**oooo
**oo*ooo*
o*oo**o**
ooooooooo
*******oo
o*o*oo*oo
*******oo
10 1
*
*
*
o
*
*
*
*
*
*

Sample Output

17
5

Source

 
题意:*是城市,基站只能安到城市上,可以覆盖上下左右至多2个位置,求最小的基站数、
恶心的建图~
两个点间的覆盖,尝试最小路径覆盖
考虑拆点,将每个城市以及他能覆盖的位置连边,因为两个位置是相互影响的,所以是无向二分图
所以ans=总城市数-最大匹配数/2;
 1 #include <cstring>
 2 #include <cstdio>
 3 
 4 using namespace std;
 5 
 6 char s[440];
 7 int fx[4]={0,1,0,-1};
 8 int fy[4]={1,0,-1,0};
 9 bool vis[440],map[440][440];
10 int cnt,match[440],if_[440][440];
11 
12 int find(int u)
13 {
14     for(int v=1;v<=cnt;v++)
15         if(map[u][v]&&!vis[v])
16         {
17             vis[v]=1;
18             if(!match[v]||find(match[v]))
19             {
20                 match[v]=u;
21                 return true;
22             }
23         }
24     return false;
25 }
26 
27 int main()
28 {
29     int t; scanf("%d",&t);
30     for(int n,m,ans=0;t--;cnt=ans=0)
31     {
32         scanf("%d%d",&n,&m);
33         for(int i=1;i<=n;i++)
34         {
35             scanf("%s",s+1);
36             for(int j=1;j<=m;j++)
37               if(s[j]=='*') if_[i][j]=++cnt;
38         }
39         for(int i=1;i<=n;i++)
40           for(int j=1;j<=m;j++)
41             if(if_[i][j])
42              for(int k=0;k<4;k++)
43              {
44                  int x=i+fx[k],y=j+fy[k];
45                  if(if_[x][y])
46                      map[if_[i][j]][if_[x][y]]=1;
47              }
48         for(int i=1;i<=cnt;i++)
49         {
50             if(find(i)) ans++;
51             memset(vis,0,sizeof(vis));
52         }
53         printf("%d
",cnt-ans/2);
54         memset(map,0,sizeof(map));
55         memset(if_,0,sizeof(if_));
56         memset(match,0,sizeof(match));
57     }
58     return 0;
59 }
 
——每当你想要放弃的时候,就想想是为了什么才一路坚持到现在。
原文地址:https://www.cnblogs.com/Shy-key/p/7424926.html