COCI '17 Contest 4 #2 Izbori

View as PDF

Submit solution

Points: 5 (partial)
Time limit: 3.0s
Memory limit: 64M

Problem type

In a land with developed democracy far, far away, presidential elections for the football association are taking place. This land consists of N counties, and each county has its own football association. There are M presidential candidates labeled with 1, 2, \dots, M. Each of the football associations will select exactly one candidate to cast their vote for. The winner of the election is the candidate with the most votes. If multiple candidates get the most amount of votes, the winner is the one with the smallest label.

During the election campaign, candidates visited the counties and tried to gain their sympathies. After having met all the candidates, each county's football association determined the order in which they would cast their vote for each candidate.

For example, let's assume that there are four candidates in the election and that one county's order is 2, 1, 4, 3. This means that, unless they revoke their candidacy, the candidate with label 2 will get the county's vote. If candidate 2 revokes their candidacy, and candidate 1 is still in the race, then they will get the vote, and so on.

Zdravko is a passionate football fan, and also a close friend of candidate with label K. He wants to know which candidate will win if none of the candidates revoke their candidacy.

He also wants to know what is the minimal number of candidates he must persuade to revoke their candidacy in order for his friend, candidate K, to become the president of the football association.

Zdravko is currently dealing with other problems, so he is hoping that you will answer these questions.

Input Specification

The first line of input contains the numbers N (1 \le N \le 100), M (1 \le M \le 15) and K (1 \le K \le M) from the task. Each of the following N lines contains the orders given by the counties' football associations, i.e. a permutation of the first M natural numbers.

Output Specification

You must output the answers to the questions from the task, each in its own line.

Scoring

The output must consist of two non-empty lines, each containing a single integer. The correct answer to each of the questions is worth 50\% of points for that test case.

Sample Input 1

3 4 1
3 4 1 2
4 2 3 1
3 4 2 1

Sample Output 1

3
3

Explanation for Sample Output 1

The land where the elections are being held consists of 3 counties, and there are 4 candidates for the president of the association. If none of the candidates revoke their candidacy, candidate 3 will win the elections with two votes. Candidate 1 will only win if all the other candidates revoke their candidacy.

Sample Input 2

4 1 1
1
1
1
1

Sample Output 2

1
0

Explanation for Sample Output 2

There is only one candidate, Zdravko's friend, so they will surely win.

Sample Input 3

4 4 4
2 3 1 4
2 3 1 4
1 3 2 4
4 3 2 1

Sample Output 3

2
3

Comments

There are no comments at the moment.