#P1285E. Delete a Segment
Delete a Segment
No submission language available for this problem.
Description
There are segments on a axis , , ..., . Segment covers all points from to inclusive, so all such that .
Segments can be placed arbitrarily — be inside each other, coincide and so on. Segments can degenerate into points, that is is possible.
Union of the set of segments is such a set of segments which covers exactly the same set of points as the original set. For example:
- if and there are segments , , then their union is segments: and ;
- if and there are segments , , , , then their union is segments: and .
Obviously, a union is a set of pairwise non-intersecting segments.
You are asked to erase exactly one segment of the given so that the number of segments in the union of the rest segments is maximum possible.
For example, if and there are segments , , , , then:
- erasing the first segment will lead to , , remaining, which have segment in their union;
- erasing the second segment will lead to , , remaining, which have segment in their union;
- erasing the third segment will lead to , , remaining, which have segments in their union;
- erasing the fourth segment will lead to , , remaining, which have segment in their union.
Thus, you are required to erase the third segment to get answer .
Write a program that will find the maximum number of segments in the union of segments if you erase any of the given segments.
Note that if there are multiple equal segments in the given set, then you can erase only one of them anyway. So the set after erasing will have exactly segments.
The first line contains one integer () — the number of test cases in the test. Then the descriptions of test cases follow.
The first of each test case contains a single integer () — the number of segments in the given set. Then lines follow, each contains a description of a segment — a pair of integers , (), where and are the coordinates of the left and right borders of the -th segment, respectively.
The segments are given in an arbitrary order.
It is guaranteed that the sum of over all test cases does not exceed .
Print integers — the answers to the given test cases in the order of input. The answer is the maximum number of segments in the union of segments if you erase any of the given segments.
Input
The first line contains one integer () — the number of test cases in the test. Then the descriptions of test cases follow.
The first of each test case contains a single integer () — the number of segments in the given set. Then lines follow, each contains a description of a segment — a pair of integers , (), where and are the coordinates of the left and right borders of the -th segment, respectively.
The segments are given in an arbitrary order.
It is guaranteed that the sum of over all test cases does not exceed .
Output
Print integers — the answers to the given test cases in the order of input. The answer is the maximum number of segments in the union of segments if you erase any of the given segments.