zoukankan      html  css  js  c++  java
  • Place the Robots

    问题 j: Place the Robots

    时间限制: 1 Sec  内存限制: 128 MB
    提交: 5  解决: 2
    [提交] [状态] [讨论版] [命题人:admin]

    题目描述

    Robert is a famous engineer. One day he was given a task by his boss. The background of the task was the following:
    Given a map consisting of square blocks. There were three kinds of blocks: Wall, Grass, and Empty. His boss wanted to place as many robots as possible in the map. Each robot held a laser weapon which could shoot to four directions (north, east, south, west) simultaneously. A robot had to stay at the block where it was initially placed all the time and to keep firing all the time. The laser beams certainly could pass the grid of Grass, but could not pass the grid of Wall. A robot could only be placed in an Empty block. Surely the boss would not want to see one robot hurting another. In other words, two robots must not be placed in one line (horizontally or vertically) unless there is a Wall between them.
    Now that you are such a smart programmer and one of Robert's best friends, He is asking you to help him solving this problem. That is, given the description of  a map, compute the maximum number of robots that can be placed in the map.

    输入

    The first line contains an integer T (<= 11) which is the number of test cases. 
    For each test case, the first line contains two integers m and n (1<= m, n <=50) which are the row and column sizes of the map. Then m lines follow, each contains n characters of '#', '*', or 'o' which represent Wall, Grass, and Empty, respectively. 

    输出

    For each test case, first output the case number in one line, in the format: "Case :id" where id is the test case number, counting from 1. In the second line just 
    output the maximum number of robots that can be placed in that map.

    样例输入

    2
    4 4
    o***
    *###
    oo#o
    ***o
    4 4
    #ooo
    o#oo
    oo#o
    ***#
    

    样例输出

    Case :1
    3
    Case :2
    5
    思路:只需要考虑空地和墙壁即可,找出行和列的联通块,用交点建立二分图,进行最大匹配就好了。
    #include<bits/stdc++.h>
    #include<vector>
    using namespace std;
    const int maxn=2e3+100;
    int ans,f[maxn],mt[maxn],n,m,cx,cy,cnt;
    int l[60][60],r[60][60];
    char str[60][60];
    vector<int>q[maxn];
    int match(int now){
        for(int i=0;i<q[now].size();i++){
            if(!mt[q[now][i]]){
                mt[q[now][i]]=1;
                if(f[q[now][i]]==-1||match(f[q[now][i]])){
                    f[q[now][i]]=now;
                    return 1;
                }
            }
        }
        return 0;
    }
    int hg(){
        ans=0;
        for(int i=1;i<=cx;i++){
            memset(mt,0,sizeof(mt));
            if(match(i))ans++;
        }
        return ans;
    }
    int main()
    {
        int T;
        cin>>T;
        while(T--){
            for(int i=0;i<maxn;i++)f[i]=-1,q[i].clear();
            cin>>n>>m;
            cx=cy=0;
            memset(l,0,sizeof(l));
            memset(r,0,sizeof(r));
            for(int i=1;i<=n;i++)scanf("%s",str[i]+1);
            for(int i=1;i<=n;i++){
                int c=0;
                for(int j=1;j<=m;j++){
                    if(str[i][j]=='o'){
                        if(!c)++cx;
                        c=1;
                        l[i][j]=cx;
                    }else if(str[i][j]=='#')c=0;
                }
            }
            for(int i=1;i<=m;i++){
                int u=0;
                for(int j=1;j<=n;j++){
                    if(str[j][i]=='o'){
                        if(!u)++cy;
                        u=1;
                        r[j][i]=cy;
                    }else if(str[j][i]=='#')u=0;
                }
            }
            for(int i=1;i<=cx;++i) q[i].clear();
            for(int i=1;i<=n;i++){
                for(int j=1;j<=m;j++){
                    if(l[i][j]&&r[i][j]){
                        q[l[i][j]].push_back(r[i][j]);
                    }
                }
            }
            cout<<"Case "<<':'<<++cnt<<endl;
            cout<<hg()<<endl;
        }
    }
  • 相关阅读:
    转:flash 键值对应
    (转)我叫AGAL,来自Adobe 【Part1】
    (转)as3 updateAfterEvent的作用
    (转)远程桌面连接由于网络错误而丢失
    (转)你有所不知的HTML發佈Flash的參數(三):base
    不要再吹水地球人听不懂的技术,咱来点干货!中文前端UI框架Kit(三)揭开高级事件管理的神秘面纱
    非常惊艳的Css3的桌面上散落的相片效果,以及单击放大图片的LightBox效果(独立Js非jQuery)的实现原理
    不要再吹水地球人听不懂的技术,咱来点干货!中文前端UI框架Kit(一)大致了解下Kit是啥?
    (转)JS正则表达式获取分组内容的方法
    分享一个Css3效果无比惊艳的全屏图片切换效果(Css浏览器Only)
  • 原文地址:https://www.cnblogs.com/czy-power/p/10361287.html
Copyright © 2011-2022 走看看