#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 and indicating its lower-left and upper-right corners ( and ). For a pair of rectangles, and , we define if and . Given a number of rectangles on the plane, you are asked to find the length of the longest sequence of rectangles such that .
Input
The input contains multiple test cases. The first line of the input is an integer , indicating the number of test cases. Each test case begins with a line containing a single integer (), indicating the number of rectangles. Each of the next lines contains four integers (, ), 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