#Lutece0614. The Longest Sequence of Rectangles

The Longest Sequence of Rectangles

Migrated from Lutece 614 The Longest Sequence of Rectangles

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

A rectangle is specified by a pair of coordinates (x1,y1)(x_1 , y_1) and (x2,y2)(x_2 , y_2) indicating its lower-left and upper-right corners (x1x2x_1 \leq x_2 and y1y2y_1 \leq y_2). For a pair of rectangles, A=((XA1,YA1),(XA2,YA2))A = ((X_{A_1}, Y_{A_1}), (X_{A_2}, Y_{A_2})) and B=((XB1,YB1),(XB2,YB2))B = ((X_{B_1}, Y_{B_1}), (X_{B_2}, Y_{B_2})), we define ABA \leq B if XA2<XB1X_{A_2}<X_{B_1} and YA2<YB1Y_{A_2}<Y_{B_1}. Given a number of rectangles on the plane, you are asked to find the length LL of the longest sequence of rectangles (A1,A2,,AL)(A_1, A_2, \cdots, A_L) such that A1A2ALA_1 \leq A_2 \leq \cdots \leq A_L.

Input

The input contains multiple test cases. The first line of the input is an integer TT, indicating the number of test cases. Each test case begins with a line containing a single integer nn (1n1000001 \leq n \leq 100000), indicating the number of rectangles. Each of the next nn lines contains four integers x1,y1,x2,y2x_1, y_1, x_2, y_2 (1000000x1<x21000000- 1000000 \leq x_1 < x_2 \leq 1000000, 1000000y1<y21000000-1000000 \leq y_1 < y_2 \leq 1000000), indicating the lower left and upper right corners of a rectangle.

Output

For each input test case, output a single integer indicating the length of the longest sequence.

Samples

2
3
1 5 2 8
3 -1 5 4
10 10 20 20
2
2 1 4 5
6 5 8 10
2
1

Resources

6th BUPT Programming Contest Final