zoukankan      html  css  js  c++  java
  • CodeForce 677I Lottery

     Lottery
     

    Today Berland holds a lottery with a prize — a huge sum of money! There are k persons, who attend the lottery. Each of them will receive a unique integer from 1 to k.

    The organizers bought n balls to organize the lottery, each of them is painted some color, the colors are numbered from 1 to k. A ball of color c corresponds to the participant with the same number. The organizers will randomly choose one ball — and the winner will be the person whose color will be chosen!

    Five hours before the start of the lottery the organizers realized that for the lottery to be fair there must be an equal number of balls of each of k colors. This will ensure that the chances of winning are equal for all the participants.

    You have to find the minimum number of balls that you need to repaint to make the lottery fair. A ball can be repainted to any of the k colors.

    Input
     

    The first line of the input contains two integers n and k (1 ≤ k ≤ n ≤ 100) — the number of balls and the number of participants. It is guaranteed that n is evenly divisible by k.

    The second line of the input contains space-separated sequence of n positive integers ci (1 ≤ ci ≤ k), where ci means the original color of the i-th ball.

    Output

    In the single line of the output print a single integer — the minimum number of balls to repaint to make number of balls of each color equal.

    Examples
    Input
     
    4 2
    2 1 2 2
    Output
     
    1
    Input
     
    8 4
    1 2 1 1 1 4 1 4
    Output
     
    3
    Note

    In the first example the organizers need to repaint any ball of color 2 to the color 1.

    In the second example the organizers need to repaint one ball of color 1 to the color 2 and two balls of the color 1 to the color 3.

    思路:

      简单水题

    AC代码:

     1 # include <iostream>
     2 # include <cstring>
     3 using namespace std;
     4 int vis[101];
     5 int main()
     6 {
     7     int n, k;
     8     memset(vis, 0, sizeof(vis));
     9     cin >> n >> k;
    10     for(int i = 1; i <= n; i++)
    11     {
    12         int t;
    13         cin >> t;
    14         vis[t]++;
    15     }
    16     int haha = n / k;
    17     int sum = 0;
    18     for(int i = 1; i <= k; i++)
    19     {
    20         if(vis[i] > haha)
    21             sum += vis[i] - haha;
    22     }
    23     cout << sum << endl;
    24     return 0;
    25 }
    View Code
    生命不息,奋斗不止,这才叫青春,青春就是拥有热情相信未来。
  • 相关阅读:
    微信小程序----map组件实现检索【定位位置】周边的POI
    nginx负载均衡和inotify+rsync文件同步
    mysql主从同步配置和读写分离实现(中间件Amoeba)
    微信小程序----Uncaught ReferenceError: ret is not defined
    微信小程序----wx:key(Now you can provide attr "wx:key" for a "wx:for" to improve performance.)
    回档|NOIP2012 同余方程
    回档|欧几里得算法和扩展欧几里得算法
    回档|Splay tree应用之郁闷的出纳员
    回档|史观小结
    回档|乘积最大
  • 原文地址:https://www.cnblogs.com/lyf-acm/p/5791516.html
Copyright © 2011-2022 走看看