zoukankan      html  css  js  c++  java
  • poj 3020 Antenna Placement

    Antenna Placement
    Time Limit: 1000MS   Memory Limit: 65536K
         

    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

    题意:在n*m的网格中,标有‘*’的城市需要覆盖无线网络,每个基站可以覆盖建设点,和 它四周的任意一个点
    求最少需要建立多少个基站
    将每个点拆成两个,若点和点的上/下/左/右都是‘*’,连边
    然后就是选最少的边覆盖所有的点
    无向二分图最小边覆盖=点数(原图的点数)-最大匹配数/2
    匈牙利算法求最大匹配数
    也可以用网络流,最大匹配数=最小割=最大流
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    using namespace std;
    int n,m,ans,match[1001],cnt;
    bool a[41][11],b[1001][1001],v[1001];
    int turn(int x,int y)
    {
        return (x-1)*m+y;
    }
    void add(int x,int y)
    {
        b[x][y]=true;
    }
    bool go(int u)
    {
        for(int i=1;i<=n*m;i++)
         if(!v[i]&&b[u][i])
         {
            v[i]=true;
            if(!match[i]||go(match[i]))
            {
                match[i]=u;
                return 1;
            }
         }
         return 0;
    }
    void link()
    {
        for(int i=1;i<=n;i++)
         for(int j=1;j<=m;j++)
          if(a[i][j])
          {
             cnt++;
            if(i!=1&&a[i-1][j]) add(turn(i,j),turn(i-1,j));
             if(j!=1&&a[i][j-1]) add(turn(i,j),turn(i,j-1));
            if(i!=n&&a[i+1][j]) add(turn(i,j),turn(i+1,j));
            if(j!=m&&a[i][j+1]) add(turn(i,j),turn(i,j+1)); 
          }
    }
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d%d",&n,&m);
            memset(a,0,sizeof(a));
            memset(b,0,sizeof(b));
            memset(match,0,sizeof(match));
            ans=0;cnt=0;
            char c;
            for(int i=1;i<=n;i++)
             for(int j=1;j<=m;j++)
             {
                 cin>>c;
                 if(c=='*') a[i][j]=true; 
             }
            link();
            for(int i=1;i<=n*m;i++)
            {
                memset(v,0,sizeof(v));
                if(go(i)) ans++;
            }
            printf("%d
    ",cnt-ans/2);
        }    
    }
  • 相关阅读:
    实验四 决策树算法及应用
    实验三 朴素贝叶斯算法及应用
    实验二 K-近邻算法及应用
    实验一 感知器及其应用
    实验3: 面向对象分析与设计
    实验2:结构化分析与设计
    实验1:软件开发文档与工具的安装与使用
    软件工程第三次作业——ATM管理系统
    软件工程第二次作业——举例分析流程图与活动图的区别与联系
    软件工程第一次作业——小学四则运算题目生成程序
  • 原文地址:https://www.cnblogs.com/TheRoadToTheGold/p/6725976.html
Copyright © 2011-2022 走看看