1676.Generous Kefa

Time Limit: 1s Memory Limit: 256MB

One day Kefa found n baloons. For convenience, we denote color of i-th baloon as si - lowercase letter of the Latin alphabet. Also Kefa has k friends. Friend will be upset, If he get two baloons of the same color. Kefa want to give out all baloons to his friends. Help Kefa to find out, can he give out all his baloons, such that no one of his friens will be upset - print «YES», if he can, and «NO», otherwise. Note, that Kefa's friend will not upset, if he doesn't get baloons at all.

Input Format(From the terminal/stdin)

The first line contains two integers n and k (1 \le n,k \le 100) - the number of baloons and friends.

Next line contains string s - colors of baloons.

Output Format(To the terminal/stdout)

Answer to the task - «YES» or «NO» in a single line.

You can choose the case (lower or upper) for each letter arbitrary.

Sample Input 1

Copy
4 2
aabb
 · \n
    \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
6 3
aacaab
 · \n
      \n

Sample Output 2

Copy
NO
  \n

Hints

In the first sample Kefa can give 1-st and 3-rd baloon to the first friend, and 2-nd and 4-th to the second.

In the second sample Kefa needs to give to all his friends baloons of color a, but one baloon will stay, thats why answer is «NO».

Submit

请先 登录

© 2025 FAQs