#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 <s,e,n>< s, e, n> 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 ss to ee, inclusive. That is, the people are considered exactly in the canteen at moment ss, and they will stay there during [s,e][s, e], while right after moment ee they would leave. You may take the samples below for more details.

Input

The first line of input is the number of test cases TT (T100T\leq 100).

In each test case, the first line consists of an integer NN (0<N1040 < N\leq 10^4), which indicates the number of groups. Then each of the next NN lines shows three integer in triple which has been defined above.(0si,ei1050\leq s_i,e_i\leq 10^5, 0<ni1000 < n_i\leq 100)

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