• A. Generous Kefa


    A. Generous Kefa
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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
    Note

    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».

     其实读懂了题意就是,比较出现次数最多的次数和k比较

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 char s[105];
     4 int k[26];
     5 int main(){
     6   int n,m;
     7   scanf("%d%d",&n,&m);
     8   scanf("%s",s);
     9   int t=strlen(s);
    10   for(int i=0;i<t;i++){
    11     k[s[i]-'a']++;
    12   }
    13   int ma=0;
    14   for(int i=0;i<26;i++){
    15     ma=max(ma,k[i]);
    16   }
    17   if(ma>m)
    18     cout<<"NO"<<endl;
    19   else
    20     cout<<"YES"<<endl;
    21 
    22   return 0;
    23 }
  • 相关阅读:
    如何测试复杂的逻辑
    Docker 安装nginx和tomcat
    提高英语
    2020年终总结
    在互联网上班是什么感觉?
    已经过去2周了,你感觉怎么样?
    如何使用玩弄 macOS 的「聚焦搜索」
    如何使用玩弄 macOS 的「聚焦搜索」
    [sdoi2015]排序(搜索+剪枝优化)
    [sdoi 2010][bzoj 1925]地精部落(神仙dp)
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7397235.html
Copyright © 2020-2023  润新知