시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB1000.000%

문제

Given a sequence of $m$ words from a newspaper article and an integer $k$, find the $k^\text{th}$ most common word(s).

입력

Input will consist of an integer $n$ followed by $n$ data sets. Each data set begins with a line containing $m$ and $k$, followed by $m$ lines, each containing a word of up to $20$ lowercase letters. There will be no more than $1\,000$ words per data set.

출력

For each input data set, determine the $k^\text{th}$ most common word(s). To be precise, a word $w$ is the $k^\text{th}$ most common if exactly $k-1$ distinct words occur more frequently than $w$ in the data set. Note that $w$ might be multiply defined (i.e. there is a tie for the $k^\text{th}$ most common word) or $w$ might not exist (i.e. there is no $k^\text{th}$ most common word). For each data set, print a title line indicating $k$ using normal ordinal notation (1st, 2nd, 3rd, 4th, 5th, …) followed by a number of lines giving all the possible values for the $k^\text{th}$ most common word. A blank line should follow the last word for each data set.

예제 입력 1

3
7 2
the
brown
the
fox
red
the
red
1 3
the
2 1
the
wash

예제 출력 1

2nd most common word(s):
red

3rd most common word(s):

1st most common word(s):
the
wash