首页 > 代码库 > POJ 3020 Antenna Placement
POJ 3020 Antenna Placement
Antenna Placement
Time Limit: 1000MSMemory Limit: 65536K
Total Submissions: 6342Accepted: 3131
DescriptionThe 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
构图啊!!!!!
给每个城市编序,然后确定城市间的关系,可知为无向二分图!!
用公式无向二分图的最小路径覆盖=顶点数-最大二分匹配/2;
AC代码如下:
#include<iostream> #include<cstring> using namespace std; int w[405][405]; int vis[405],s[405]; char map[45][15]; int v[45][15]; int tt; int xyl(int a) { int i,j; for(i=1;i<tt;i++) { if(w[a][i]&&!vis[i]) { vis[i]=1; if(s[i]==0||xyl(s[i])) { s[i]=a; return 1; } } } return 0; } int main() { int t; int n,m; int i,j; cin>>t; while(t--) { memset(w,0,sizeof w); cin>>n>>m; tt=1; for(i=0;i<n;i++) { cin>>map[i]; for(j=0;j<m;j++) if(map[i][j]=='o') v[i][j]=0; else v[i][j]=tt++; } for(i=0;i<n;i++) { for(j=0;j<m;j++) { //cout<<v[i][j]<<" "; if(v[i-1][j]!=0&&i>=1) w[v[i][j]][v[i-1][j]]=1; if(v[i+1][j]!=0&&i+1<n) w[v[i][j]][v[i+1][j]]=1; if(v[i][j-1]!=0&&j>=1) w[v[i][j]][v[i][j-1]]=1; if(v[i][j+1]!=0&&j+1<m) w[v[i][j]][v[i][j+1]]=1; } //cout<<endl; } int ans=0; memset(s,0,sizeof s); for(i=1;i<tt;i++) { memset(vis,0,sizeof vis); if(xyl(i)) ans++; } cout<<tt-1-ans/2<<endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。