zoukankan      html  css  js  c++  java
  • POJ3020(最小边覆盖)

    Antenna Placement
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 8924   Accepted: 4428

    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
    思路:与POJ2446对比。若允许重叠则为最小边覆盖,否则为最大匹配。
    #include <cstdio>
    #include <vector>
    #include <cstring>
    using namespace std;
    const int MAXN=505;
    int n,m;
    vector<int> arc[MAXN];
    char mz[MAXN][MAXN];
    int vis[MAXN][MAXN];
    int dy[4]={0,1,0,-1};
    int dx[4]={1,0,-1,0};
    
    int match[MAXN],used[MAXN];
    bool dfs(int u)
    {
        for(int i=0;i<arc[u].size();i++)
        {
            int to=arc[u][i];
            if(!used[to])    
            {
                used[to]=1;
                int w=match[to];
                if(w==-1||dfs(w))
                {
                    match[to]=u;
                    match[u]=to;
                    return true;
                }
            }
        }
        return false;
    }
    int max_flow()
    {
        int ans=0;
        memset(match,-1,sizeof(match));
        int limit=n*m;
        for(int i=0;i<limit;i++)
        {
            if(match[i]==-1)
            {
                memset(used,0,sizeof(used));
                if(dfs(i))    ans++;
            }
        }
        return ans;
    }
    
    int main()
    {
        int T;
        scanf("%d",&T);
        while(T--)
        {    
            scanf("%d%d",&n,&m);
            memset(vis,0,sizeof(vis));
            for(int i=0;i<MAXN;i++)    arc[i].clear();
            for(int i=0;i<n;i++)
            {
                scanf("%s",mz[i]);
            }
            int nodes=0;
            for(int y=0;y<n;y++)
            {
                for(int x=0;x<m;x++)
                {
                    if(mz[y][x]!='*')    continue;
                    nodes++;
                    vis[y][x]=1;
                    for(int i=0;i<4;i++)
                    {
                        int ny=y+dy[i];
                        int nx=x+dx[i];
                        if(0<=ny&&ny<n&&0<=nx&&nx<m&&!vis[ny][nx]&&mz[ny][nx]=='*')
                        {
                            int u=y*m+x;
                            int v=ny*m+nx;
                            arc[u].push_back(v);
                            arc[v].push_back(u);
                        }
                    }
                }
            }
            int res=nodes-max_flow();
            printf("%d
    ",res);
        }
        return 0;
    }


  • 相关阅读:
    Activity(二)
    channelartlist标签的使用
    把数据保存到数据库附加表 `dede_addonarticle` 时出错,请把相关信息提交给DedeCms官方。Duplicate entry '2' for key 'PRIMARY'
    TP5.0验证器使用方法
    TP5.0登录验证码实现
    dede列表页限制标题长度
    dede搜索页做法
    表单正则验证简便方法
    解决织梦dedecms文档关键字(自动内链)php5.5以上失效的问题 urf-8版本的
    织梦dede解决“更新数据库archives表时出错"方法
  • 原文地址:https://www.cnblogs.com/program-ccc/p/5839868.html
Copyright © 2011-2022 走看看