问题1050--Get Ready?

1050: Get Ready?

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Is this your first times participating in this kind of contest? I think most of you will answer "Yes". So let's do this problem as warm-up and check whether the PC^2 work properly. Now, we will give you the information of some contest that are just like the one you are taking. Your task is to output their rank lists according to the contest rules you have already understood.

输入

There is only one number C(<=100) in the first line of the input, which is the number of contest. For each contest, the first line contains only one number N indicating the total number of teams. And the follow N lines. Each line has three numbers Ti,Si and Pi(1<=Ti<=N.0<=Si<=20, 0<=Pi<=10000), which stand for the ID, Score and Penalty of the ith team of the contest respectively. Specially, all teams' scores are distinct.

输出

For each contest, you should output the rank list(team ID) in descent order in just one line. Numbers separate exactly one spaces.

样例输入 Copy

2
3
3 2 200
2 1 100
1 3 300
2
1 2 222
2 1 222

样例输出 Copy

1 3 2
1 2