eolymp
bolt
Try our new interface for solving problems
Problems

The New President

The New President

Time limit 1 second
Memory limit 64 MiB

Finally, it is time to vote for a new president and you are really excited about that. You know that the final results may take weeks to be announced, while you can't really wait to see the results.

Somehow you managed to get the preferences list for every voter (we don't care how you managed to get this piece of information!). Each voter sorted out all candidates starting by his most preferred candidate and ending with his least preferred one. When voting, a voter votes for the candidate who comes first in his preferences list. For example, if there are 5 candidates (numbered 1 to 5), and the preferences list for one voter is [3, 2, 5, 1, 4] and the current competing candidates in the voting process are candidates 2 and 4, the voter will vote for candidate number 2.

Here are the rules for the election process:

  1. There are c candidates (numbered from 1 to c), and v voters (v is always an odd number).

  2. The election process consists of up to 2 rounds. All candidates compete in the the first round. If a candidate receives more than 50% of the votes, he wins, otherwise another round takes place, in which only the top 2 candidates compete for the presidency. The candidate who receives more votes than his opponent wins and becomes the new president.

  3. You can safely assume that the given preferences will never cause a situation in which the second and the third candidates from the first round receive the same number of votes.

  4. The voters' preferences are the same in both rounds, and each voter must vote exactly once in each round for a currently competing candidate according to his preferences.

Given the preferences lists, you need to write a program to figure out which candidate will win and in which round.

Input data

The first line contains the number of test cases t (1 t 100). The first line of a test case contains two integers c and v (1 c, v 100) that represent the number of candidates and voters respectively. It is followed by v lines each line contains c integers separated by a single space, representing the preferences list for a single voter (the first is his most preferable candidate while the last is his least preferable one). Each integer from 1 to c will appear exactly once in each line.

Output data

For each test case, print on a single line two integers separated by a single space. The first integer is the ID of the winner candidate (a number from 1 to c), the second integer is either 1 or 2 indicating whether this candidate will win in the first round or the second one respectively.

Examples

Input example #1
2
2 3
2 1
1 2
2 1
3 5
1 2 3
1 2 3
2 1 3
2 3 1
3 2 1
Output example #1
2 1
2 2
Source 2012 Arab Collegiate Programming Contest, Problem A