poj 3020 Antenna Placement(最大二分图匹配)

题意:

N行M列的矩阵,每个格子里不是 * 就是 O 。

* :是一个利益点。

O:是一个空白点。

每次可以用一个圈覆盖相邻的两个*。(左右相邻或上下相邻)。

问最少需要多少个圈可以覆盖所有的*。

思路:

把每个格子变成一个数,总共有N*M个数。构造二分图,左右的数字都分别是1....N*M。

若两个*可以被一个圈覆盖,则将它们对应在左边、右边的点连上线。

答案即为:*的总数 - 最大二分匹配的值/2(因为有一半是对称的)。

代码:

int T,n,m;
vector<int> graph[405];
bool bmask[405];
int cx[405],cy[405];
char s[45][15];

int findPath(int u){
    int L=graph[u].size();
    rep(i,0,L-1){
        int v=graph[u][i];
        if(!bmask[v]){
            bmask[v]=true;
            if(cy[v]==-1||findPath(cy[v])){
                cy[v]=u;
                cx[u]=v;
                return 1;
            }
        }
    }
    return 0;
}
int MaxMatch(){
    int ans=0;
    rep(i,1,n*m) cx[i]=cy[i]=-1;
    rep(i,1,n*m) if(cx[i]==-1){
        mem(bmask,false);
        ans+=findPath(i);
    }
    return ans;
}

int main(){
    cin>>T;
    while(T--){
        scanf("%d%d",&n,&m);

        rep(i,1,n*m) graph[i].clear();
        int cc=0;

        rep(i,1,n) scanf("%s",s[i]);
        rep(i,1,n){
            rep(j,0,m-1) if(s[i][j]==‘*‘){
                int num=m*(i-1)+j+1;
                int u=i, v=j+1;
                if(v-1>=1 && s[u][j-1]==‘*‘) graph[num].push_back(num-1);
                if(v+1<=m && s[u][j+1]==‘*‘) graph[num].push_back(num+1);
                if(u-1>=1 && s[u-1][j]==‘*‘) graph[num].push_back(num-m);
                if(u+1<=n && s[u+1][j]==‘*‘) graph[num].push_back(num+m);
                ++cc;
            }
        }
        int dd=MaxMatch();
        printf("%d\n",cc-dd/2);
    }
}
时间: 2024-10-09 22:34:16

poj 3020 Antenna Placement(最大二分图匹配)的相关文章

POJ 3020 Antenna Placement(二分图匹配)

POJ 3020 Antenna Placement 题目链接 题意:给定一个地图,'*'的地方要被覆盖上,每次可以用1 x 2的矩形去覆盖,问最少用几个能覆盖 思路:二分图匹配求最大独立集,相邻*之间连边,然后求最大独立集即可 看这数据范围,用轮廓线dp应该也能搞 代码: #include <cstdio> #include <cstring> #include <vector> #include <algorithm> using namespace s

POJ 3020 Antenna Placement ,二分图的最小路径覆盖

题目大意: 一个矩形中,有N个城市'*',现在这n个城市都要覆盖无线,若放置一个基站,那么它至多可以覆盖相邻的两个城市. 问至少放置多少个基站才能使得所有的城市都覆盖无线? 无向二分图的最小路径覆盖 = 顶点数 –  最大二分匹配数/2 路径覆盖就是在图中找一些路径,使之覆盖了图中的所有顶点,且任何一个顶点有且只有一条路径与之关联: #include<cstdio> #include<cstring> #include<vector> #include<algor

POJ 3020 Antenna Placement(二分匹配+拆点)

题目链接:http://poj.org/problem?id=3020 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,

二分图匹配(匈牙利算法) POJ 3020 Antenna Placement

题目传送门 1 /* 2 题意:*的点占据后能顺带占据四个方向的一个*,问最少要占据多少个 3 匈牙利算法:按坐标奇偶性把*分为两个集合,那么除了匹配的其中一方是顺带占据外,其他都要占据 4 */ 5 #include <cstdio> 6 #include <algorithm> 7 #include <cstring> 8 #include <vector> 9 using namespace std; 10 11 const int MAXN = 4e

POJ 3020 Antenna Placement(二分图建图训练 + 最小路径覆盖)

题目链接:http://poj.org/problem?id=3020 Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6692   Accepted: 3325 Description The Global Aerial Research Centre has been allotted the task of building the fifth generation of mobi

poj 3020 Antenna Placement 解题报告

题目链接:http://poj.org/problem?id=3020 题目意思:首先,请忽略那幅有可能误导他人成分的截图(可能我悟性差,反正有一点点误导我了). 给出一幅 h * w 的图,  “ * ” 表示 point of interest,“ o ” 忽略之.你可以对 " * " (假设这个 “* ”的坐标是 (i, j))画圈,每个圈只能把它四周的某一个点括住(或者是上面(i-1, j) or 下面(i+1, j) or 左边(i, j-1)  or 右边(i, j+1))

poj 3020 Antenna Placement(最小路径覆盖 + 构图)

http://poj.org/problem?id=3020 Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7565   Accepted: 3758 Description The Global Aerial Research Centre has been allotted the task of building the fifth generation of mobile ph

POJ 题目3020 Antenna Placement(二分图)

Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7011   Accepted: 3478 Description The Global Aerial Research Centre has been allotted the task of building the fifth generation of mobile phone nets in Sweden. The most st

POJ 3020 Antenna Placement 最大匹配

Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6445   Accepted: 3182 Description The Global Aerial Research Centre has been allotted the task of building the fifth generation of mobile phone nets in Sweden. The most st

poj 3020 Antenna Placement(二分无向图 匈牙利)

Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6438   Accepted: 3176 看了别人的题解才过的... 渣啊.. 最主要的是构图 城市才是要构造的二分图的顶点! 构造方法如下: 例如输入: *oo *** O*o 时,可以抽象为一个数字地图: 100 234 050 数字就是根据输入的城市次序作为该城市的编号,0代表该位置没有城市. 然后根据题目的"范围"规则,