#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 N×NN \times N grid (1N500)(1 \leq N \leq 500). The grid contains KK asteroids (1K10,000)(1 \leq K \leq 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

The first line contains a single integer t(1t11)t (1 \leq t \leq 11), the number of test cases.

Each case begins with two integers NN and KK, separated by a single space.Then KK lines follows,each line contains two space-separated integers RR and C(1R,CN)C (1 \leq R, C \leq N) 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 11 to destroy the asteroids at (1,1)(1,1) and (1,3)(1,3), and then she may fire down column 22 to destroy the asteroids at (2,2)(2,2) and (3,2)(3,2).

Resources

USACO 2005 November Gold