#Lutece0253. Asteroids
Asteroids
Migrated from Lutece 253 Asteroids
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Bessie wants to navigate her spaceship through a dangerous asteroid field in the shape of an grid . The grid contains asteroids , 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
The first line contains a single integer , the number of test cases.
Each case begins with two integers and , separated by a single space.Then lines follows,each line contains two space-separated integers and denoting the row and column coordinates of an asteroid, respectively.
Output
For each case, print an integer representing the minimum number of times Bessie must shoot.
Samples
1
3 4
1 1
1 3
2 2
3 2
2
Note
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 to destroy the asteroids at and , and then she may fire down column to destroy the asteroids at and .
Resources
USACO 2005 November Gold