POJ3041

Written by    19:26 August 14, 2018 

POJ3041

Asteroids
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 26141 Accepted: 14134

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

Sample Output

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

思路

 

首先明确几个概念:

二分图:指定点可以分为两个不相交的集\(U\) 和\(V\),其中\(U\)和\(V\)皆为独立集,使得在同一个集内的定点不相邻的图。另外还有一个有趣的等价定义:不含有「含奇数条边的环」的图。

匹配:一个任意两条边都没有公共顶点的边的集合。

最大匹配:一个图中所含匹配边数最多的匹配。

在这个题目里面把每一行每一列都看成点,然后把行与列之间的交点看成边,就转换成求的最大二分匹配的问题,然后直接套匈牙利算法模板即可。

代码

 

 

Category : acmstudy

Tags :