[BOJ 6960] Common Words

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 128M

Problem types
Allowed languages
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text

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.

예제 입력

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

예제 출력

2nd most common word(s):
red

3rd most common word(s):

1st most common word(s):
the
wash

Comments

There are no comments at the moment.