Codeforces Round #429 (Div 2) A

来源:互联网 发布:js有哪些内置对象 编辑:程序博客网 时间:2024/06/01 10:41

A. Generous Kefa

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

The first line contains two integers n and k (1 ≤ n, k ≤ 100) — the number of baloons and friends.
Next line contains string s — colors of baloons.

Output

Answer to the task — «YES» or «NO» in a single line.
You can choose the case (lower or upper) for each letter arbitrary.

Examples

input
4 2
aabb
output
YES
input
6 3
aacaab
output
NO

【解题报告】
抽屉原理

代码如下:

#include<cstdio>#include<cstring>#include<algorithm>using namespace std;#define N 100010int n,k,num[N];  char st[N];  bool flag=true;  int main(){      scanf("%d%d",&n,&k);      scanf("%s",st);      for(int i=0;i<strlen(st);++i) num[st[i]-'a']++;        for(int i=0;i<26;++i) if(num[i]>k) flag=false;        puts((!flag)?"NO":"YES");    return 0;  }