Asteroids

td>Accepted: 9375

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 17237  

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.

Output

* Line 1: The integer representing the minimum number of times Bessie must shoot.

Sample Input

3 4
1 1
1 3
2 2
3 2

Sample Output

2

Hint

INPUT DETAILS:
The following diagram represents the data, where "X" is an asteroid and "." is empty space:

X.X

.X.

.X.

OUTPUT DETAILS:

Bessie may fire across row 1 to destroy the asteroids at (1,1) and
(1,3), and then she may fire down column 2 to destroy the asteroids at
(2,2) and (3,2).

Source

(以行列分别作为两个顶点集V1、V2,其中| V1|=| V2|)

然后把每行x或者每列y看成一个点,而障碍物(x,y)可以看做连接x和y的边。按照这种思路构图后。问题就转化成为选择最少的一些点(x或y),使得从这些点与所有的边相邻,其实这就是最小点覆盖问题。

再利用二分图最大匹配的König定理:

最小点覆盖数 = 最大匹配数

 

(PS:最小点覆盖:假如选了一个点就相当于覆盖了以它为端点的所有边,你需要选择最少的点来覆盖图的所有的边。)

因此本题自然转化为求 二分图的最大匹配 问题

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;
int g[][:span style="color: #000000;">];
int link[];
bool vis[];
int tx,ty;
bool find(int u){
for(int i=;i<=ty;i++){
if(!vis[i]&&g[u][i]){
vis[i]=true;
if(link[i]==-||find(link[i])){
link[i]=u;
return true;
}
} }
return false;
}
int solve(){
int sum=;
memset(link,-,sizeof(link));
for(int i=;i<=tx;i++){
memset(vis,false,sizeof(vis));
if(find(i))
sum++;
}
return sum;
}
int main(){
int n;
while(scanf("%d%d",&tx,&n)!=EOF){
memset(g,,sizeof(g));
ty=tx;
int x,y;
for(int i=;i<=n;i++){
scanf("%d%d",&x,&y);
g[x][y]=;
}
printf("%d\n",solve());
}
return ;
}

最新文章

  1. Linux下Nginx负载 iis问题
  2. VS2012中丢失ArcGIS模板的解决方法
  3. CleanBlog(个人博客+源码)
  4. Gradle使用指南
  5. 【android】新手容易遇到的[error: Error retrieving parent for item: No resource found that matches the given name &#39;Theme.AppCompat.Light&#39;.]Theme出错的问题
  6. yiii 框架登录 判断是否是游客模式及未登录状态
  7. ElasticSearch 2 (10) - 在ElasticSearch之下(深入理解Shard和Lucene Index)
  8. 【转】javascript运行机制之this详解
  9. Xenia and Bit Operations(线段树单点更新)
  10. Http的请求的全过程
  11. 自动监控主从MySQL同步的SHELL脚本
  12. Linux入门之——安装虚拟机软件
  13. Android EditText限制输入一些固定字符的属性
  14. Eclipse和PyDev搭建python开发环境
  15. iOS app 集成友盟推送问题
  16. Ant部署(linux)
  17. bzoj 4898: [Apio2017]商旅
  18. c语言第1次作业
  19. promise用法十道题
  20. https请求抛出异常

热门文章

  1. C#基础知识系列九(对IEnumerable和IEnumerator接口的糊涂认识)
  2. Webbench网站压力测试
  3. 利用 NSSortDescriptor 对 NSMutableArray 排序
  4. 2016 版 Laravel 系列入门教程(二)【最适合中国人的 Laravel 教程】
  5. BACKBONE源代码解析
  6. hdu1828 线段树+离散化+扫描线
  7. Hibernate-入门教程
  8. 修改mysql最大连接数的方法
  9. xbz分组题B 吉利数字 数位dp入门
  10. photon mapping阶段性总结