POJ 3041 Asteroids (最小点覆盖)

网友投稿 244 2022-09-16

POJ 3041 Asteroids (最小点覆盖)

Description

Bessie wants to navigate her spaceship through a dangerous asteroid field in the shape of an N x N grid (1 <= N <= 500). The grid contains K asteroids (1 <= K <= 10,000), which are conveniently located at the lattice points of the grid. Fortunately, Bessie has a powerful weapon that can vaporize all the asteroids in any given row or column of the grid with a single shot.This weapon is quite expensive, so she wishes to use it sparingly.Given the location of all the asteroids in the field, find the minimum number of shots Bessie needs to fire to eliminate all of the asteroids.

Input

Line 1: Two integers N and K, separated by a single space.Lines 2..K+1: Each line contains two space-separated integers R and C (1 <= R, C <= N) denoting the row and column coordinates of an asteroid, respectively.OutputLine 1: The integer representing the minimum number of times Bessie must shoot.r/>

Sample Input

3 41 11 32 23 2

Sample Output

2

题意

给出所有障碍物的坐标,每一次可以消灭一行或者一列,问最少需要几次才可以消灭完所有的障碍物。

思路

看过别人的博客才知道这种建图的方法,要是我会想到么?

把行 x 看成二分图的一个集合,列 y 看作二分图的另一个集合,然后某一点 (x,y)

于是二分图的每一条边便是一个障碍物,而我们现在要做的是找到需要安置炸弹的行与列,在二分图中便是两个集合的相应点。

呐,最小点覆盖问题。

因为二分图的最大匹配数等于最小点覆盖数目,于是便可以用匈牙利算法解决咯!

AC 代码

#include #include#include#include#include#include#include#define inf (1<<25)using namespace std;const int MAXN=510;int uN,vN;//u,v数目int g[MAXN][MAXN];int linker[MAXN];bool used[MAXN];bool dfs(int u)//从左边开始找增广路径{ int v; for(v=0; v

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:POJ 2029 Get Many Persimmon Trees (枚举)
下一篇:POJ 1753 Flip Game (枚举)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~