CF1552B.Running for Gold

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Olympic Games have just started and Federico is eager to watch the marathon race.

There will be nn athletes, numbered from 11 to nn , competing in the marathon, and all of them have taken part in 55 important marathons, numbered from 11 to 55 , in the past. For each 1in1\le i\le n and 1j51\le j\le 5 , Federico remembers that athlete ii ranked ri,jr_{i,j} -th in marathon jj (e.g., r2,4=3r_{2,4}=3 means that athlete 22 was third in marathon 44 ).

Federico considers athlete xx superior to athlete yy if athlete xx ranked better than athlete yy in at least 33 past marathons, i.e., rx,j<ry,jr_{x,j}<r_{y,j} for at least 33 distinct values of jj .

Federico believes that an athlete is likely to get the gold medal at the Olympics if he is superior to all other athletes.

Find any athlete who is likely to get the gold medal (that is, an athlete who is superior to all other athletes), or determine that there is no such athlete.

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases. Then tt test cases follow.

The first line of each test case contains a single integer nn ( 1n500001\le n\le 50\,000 ) — the number of athletes.

Then nn lines follow, each describing the ranking positions of one athlete.

The ii -th of these lines contains the 55 integers ri,1,ri,2,ri,3,ri,4,ri,5r_{i,1},\,r_{i,2},\,r_{i,3},\,r_{i,4},\, r_{i,5} ( 1ri,j500001\le r_{i,j}\le 50\,000 ) — the ranking positions of athlete ii in the past 55 marathons. It is guaranteed that, in each of the 55 past marathons, the nn athletes have distinct ranking positions, i.e., for each 1j51\le j\le 5 , the nn values r1,j,r2,j,,rn,jr_{1,j},\, r_{2, j},\, \dots,\, r_{n, j} are distinct.

It is guaranteed that the sum of nn over all test cases does not exceed 5000050\,000 .

输出格式

For each test case, print a single integer — the number of an athlete who is likely to get the gold medal (that is, an athlete who is superior to all other athletes). If there are no such athletes, print 1-1 . If there is more than such one athlete, print any of them.

输入输出样例

  • 输入#1

    4
    1
    50000 1 50000 50000 50000
    3
    10 10 20 30 30
    20 20 30 10 10
    30 30 10 20 20
    3
    1 1 1 1 1
    2 2 2 2 2
    3 3 3 3 3
    6
    9 5 3 7 1
    7 4 1 6 8
    5 6 7 3 2
    6 7 8 8 6
    4 2 2 4 5
    8 3 6 9 4

    输出#1

    1
    -1
    1
    5

说明/提示

Explanation of the first test case: There is only one athlete, therefore he is superior to everyone else (since there is no one else), and thus he is likely to get the gold medal.

Explanation of the second test case: There are n=3n=3 athletes.

  • Athlete 11 is superior to athlete 22 . Indeed athlete 11 ranks better than athlete 22 in the marathons 11 , 22 and 33 .
  • Athlete 22 is superior to athlete 33 . Indeed athlete 22 ranks better than athlete 33 in the marathons 11 , 22 , 44 and 55 .
  • Athlete 33 is superior to athlete 11 . Indeed athlete 33 ranks better than athlete 11 in the marathons 33 , 44 and 55 .

Explanation of the third test case: There are n=3n=3 athletes.

  • Athlete 11 is superior to athletes 22 and 33 . Since he is superior to all other athletes, he is likely to get the gold medal.
  • Athlete 22 is superior to athlete 33 .
  • Athlete 33 is not superior to any other athlete.

Explanation of the fourth test case: There are n=6n=6 athletes.

  • Athlete 11 is superior to athletes 33 , 44 , 66 .
  • Athlete 22 is superior to athletes 11 , 44 , 66 .
  • Athlete 33 is superior to athletes 22 , 44 , 66 .
  • Athlete 44 is not superior to any other athlete.
  • Athlete 55 is superior to athletes 11 , 22 , 33 , 44 , 66 . Since he is superior to all other athletes, he is likely to get the gold medal.
  • Athlete 66 is only superior to athlete 44 .
首页