#Lutece0698. Head Count
Head Count
Migrated from Lutece 698 Head Count
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
Living in BUPT, you have to be accustomed to the crowded canteen. I hate the terrible feeling when stepping into the student canteen. The only thing which interests me is to count how many people are there in the canteen. Of course, this counting problem is too easy and naive to you. So let us consider a more complicated problem. Because of the flow of people stepping in and out, the number of people in the canteen is dynamic shifting. You task is to find the peak value of the number of people in the canteen at some moments.
To describe the problem more clearly, we define the triple to describe the group of people stepping in and out. Specifically, they separately represent the arriving moment, leaving moment, and the number of people in this group. Note that the given time interval of the group of people in the canteen is from to , inclusive. That is, the people are considered exactly in the canteen at moment , and they will stay there during , while right after moment they would leave. You may take the samples below for more details.
Input
The first line of input is the number of test cases ().
In each test case, the first line consists of an integer (), which indicates the number of groups. Then each of the next lines shows three integer in triple which has been defined above.(, )
Output
For each test case, output only one integer which indicates the peak value of crowd.
Samples
2
2
0 2 1
1 4 1
3
1 3 2
3 5 1
2 4 1
2
4
Resources
The 7th BUPT Collegiate Programming Contest