Statistics

Problem Statement for "BuildingHeightsEasy"

Problem Statement

Byteland is a city with many skyscrapers, so it's a perfect venue for BASE jumping. Danilo is an enthusiastic BASE jumper. He plans to come to Byteland and to jump off some of its buildings.


Danilo wants to make M jumps in Byteland. However, he has some rules. First, he never jumps off the same building twice. Second, all buildings he selects for his jumps must have the same number of floors. (This is for safety reasons: It is hard to get the timing right if each jump starts at a different height.)


Philipe is the mayor of Byteland. He welcomes Danilo's visit as he would like to use it as a publicity stunt. However, Philipe knows that Danilo will only come to Byteland if there are at least M buildings that each have the same number of floors. To ensure that, the mayor is willing to build additional floors on some of the skyscrapers in Byteland.


You are given the int M and a int[] heights. Each element of heights is the number of floors in one of Byteland's skyscrapers. Compute and return the smallest number of additional floors the mayor has to build so that there will be at least M buildings with the same number of floors.

Definition

Class:
BuildingHeightsEasy
Method:
minimum
Parameters:
int, int[]
Returns:
int
Method signature:
int minimum(int M, int[] heights)
(be sure your method is public)

Constraints

  • heights will contain between 1 and 50 elements, inclusive.
  • M will be between 1 and the number of elements in heights, inclusive.
  • Each element in heights will be between 1 and 50, inclusive.

Examples

  1. 2

    {1, 2, 1, 4, 3}

    Returns: 0

    Note that we already have two buildings that have the same number of floors. Hence, no additional floors need to be built.

  2. 3

    {1, 3, 5, 2, 1}

    Returns: 2

    We want to have at least three buildings with the same number of floors. The best way to reach this goal is to build one floor on building #0 and one floor on building #4 (0-based indices). After these changes, buildings #0, #3, and #4 will have two floors each.

  3. 1

    {43, 19, 15}

    Returns: 0

  4. 3

    {19, 23, 9, 12}

    Returns: 15

  5. 12

    {25, 18, 38, 1, 42, 41, 14, 16, 19, 46, 42, 39, 38, 31, 43, 37, 26, 41, 33, 37, 45, 27, 19, 24, 33, 11, 22, 20, 36, 4, 4}

    Returns: 47

  6. 4

    {41, 12, 15, 33, 25, 32, 2, 23, 23, 40}

    Returns: 14

  7. 10

    {34, 48, 29, 26, 30, 17, 23, 8, 37, 48, 40, 47}

    Returns: 118

  8. 9

    {32, 25, 15, 43, 48, 5, 5, 14, 40, 31, 46, 41, 3, 20, 32, 16, 23, 16, 14}

    Returns: 72

  9. 1

    {13}

    Returns: 0

  10. 39

    {33, 3, 36, 7, 17, 31, 6, 24, 35, 20, 15, 17, 15, 5, 22, 34, 36, 37, 9, 3, 50, 13, 46, 43, 34, 12, 45, 40, 24, 36, 45, 9, 41, 30, 15, 9, 10, 23, 32, 46, 44, 48}

    Returns: 795

  11. 1

    {2, 34, 43, 40, 20, 3, 44, 22, 18, 41, 14, 1, 3}

    Returns: 0

  12. 2

    {28, 45, 36, 36, 37, 18, 3, 46, 29, 27}

    Returns: 0

  13. 1

    {20, 25, 39, 29, 28, 22, 23, 19, 43, 26, 15, 14, 45, 5, 29, 47, 9, 38, 38, 37, 35, 26, 24, 21, 45, 28, 16}

    Returns: 0

  14. 7

    {45, 49, 23, 21, 37, 1, 50, 10, 24, 19, 5, 1, 35, 20, 45, 39, 49, 41, 50, 38, 30, 38, 22}

    Returns: 21

  15. 5

    {45, 1, 39, 12, 26, 42, 6}

    Returns: 61

  16. 13

    {28, 13, 17, 28, 24, 40, 48, 30, 42, 32, 50, 36, 22, 48, 28, 21, 37, 10, 8, 11, 18, 21, 5, 19, 9, 16}

    Returns: 96

  17. 36

    {24, 21, 18, 1, 35, 37, 30, 11, 28, 29, 40, 20, 12, 39, 7, 36, 38, 37, 6, 27, 48, 16, 37, 15, 36, 41, 35, 46, 8, 30, 49, 31, 3, 19, 34, 37, 5, 15, 49, 34, 46, 39, 3, 7, 29, 12}

    Returns: 510

  18. 27

    {50, 50, 45, 47, 17, 31, 11, 2, 23, 46, 49, 30, 25, 49, 13, 29, 17, 46, 16, 23, 12, 14, 7, 7, 4, 11, 14, 33, 22, 7, 3, 23, 8, 47, 19, 24, 27, 30, 27, 1, 25, 25}

    Returns: 303

  19. 21

    {24, 42, 32, 42, 39, 47, 15, 1, 12, 23, 7, 18, 33, 22, 2, 7, 31, 4, 29, 38, 2, 48, 12, 30, 29, 40, 30, 5, 15, 9}

    Returns: 304

  20. 5

    {3, 38, 31, 41, 36}

    Returns: 56

  21. 10

    {48, 19, 50, 17, 2, 23, 18, 10, 3, 23, 38, 43, 24, 37, 6, 5, 15, 45, 34, 19, 11, 44, 26, 50, 46, 13, 33, 37, 49, 29, 29, 48, 50, 28, 14, 3, 1, 33, 12, 5, 7, 1, 47, 30, 38, 2, 36}

    Returns: 23

  22. 15

    {8, 12, 43, 46, 10, 23, 24, 9, 22, 4, 22, 26, 6, 6, 37, 12, 12, 40, 9, 43, 29, 12, 28, 32, 10, 48, 4, 19, 10, 3, 29, 19, 17, 21, 16, 26, 43, 39, 35, 17, 44, 8, 42, 1, 16, 31, 13, 27}

    Returns: 48

  23. 3

    {22, 50, 36, 1, 31, 46, 49, 37, 16, 10, 39, 44, 28, 5, 16, 43, 33, 10, 33, 19}

    Returns: 2

  24. 13

    {28, 20, 31, 43, 2, 43, 22, 23, 17, 43, 22, 3, 45, 2, 50, 43, 40, 15, 2, 31, 10, 31, 35, 27, 25, 19, 36, 10}

    Returns: 92

  25. 4

    {40, 17, 35, 20, 9, 38, 15, 32, 10, 31, 26, 33, 35, 21, 36, 34, 15, 26, 48, 19, 6, 9, 1, 42, 35, 26, 11, 23, 37, 49, 38, 28, 17, 22, 47, 28, 9, 13, 9}

    Returns: 0

  26. 4

    {35, 2, 28, 7, 37, 14, 21, 14, 13, 39, 19, 22, 40, 11, 8, 17, 23, 30, 5, 23}

    Returns: 3

  27. 5

    {42, 40, 28, 19, 50, 43, 27, 19, 36, 13, 22, 15, 19, 11, 30, 40, 24}

    Returns: 10

  28. 6

    {45, 14, 19, 7, 21, 37, 29, 1, 41, 3, 19, 22, 44, 9, 2, 12, 8, 44, 41, 29, 31, 3, 50, 47, 24, 12, 27, 13, 36, 19, 44, 32, 34, 15, 38, 6, 1, 18, 8, 42, 22, 27, 15}

    Returns: 8

  29. 7

    {16, 29, 44, 11, 21, 22, 41, 24, 22, 40, 47, 33, 16, 11, 20, 36}

    Returns: 26

  30. 3

    {21, 18, 40, 26}

    Returns: 13

  31. 5

    {34, 14, 29, 12, 28, 46, 46, 46, 26, 39, 8, 47, 13, 49, 20, 34, 40, 18, 18, 5, 30}

    Returns: 10

  32. 2

    {33, 42, 12, 3, 34, 37, 25, 40, 22, 38, 20, 33, 17, 17, 28, 14, 43, 19, 22, 39, 33, 22, 10, 18, 11, 27, 35, 17, 6, 26, 8, 40, 20, 19, 44, 3, 7, 18, 42, 29}

    Returns: 0

  33. 1

    {9 }

    Returns: 0

  34. 2

    {5, 2, 1 }

    Returns: 1

  35. 3

    {2, 3, 3, 3, 3 }

    Returns: 0

  36. 3

    {2, 5, 6, 7, 11, 17 }

    Returns: 3

  37. 3

    {1, 1, 50 }

    Returns: 98

  38. 50

    {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 50 }

    Returns: 2401

  39. 3

    {1, 2, 19, 19, 19 }

    Returns: 0

  40. 12

    {25, 18, 38, 1, 42, 41, 14, 16, 19, 46, 42, 39, 38, 31, 43, 37, 26, 41, 33, 37, 45, 27, 19, 24, 33, 11, 22, 20, 36, 4, 4 }

    Returns: 47

  41. 4

    {3, 3, 4, 4, 4 }

    Returns: 1

  42. 2

    {1, 2, 5, 10, 20, 30, 50 }

    Returns: 1

  43. 2

    {3, 1, 4, 4 }

    Returns: 0

  44. 25

    {34, 37, 28, 16, 44, 36, 37, 43, 50, 22, 13, 28, 41, 10, 14, 27, 41, 27, 23, 37, 12, 19, 18, 30, 33, 31, 13, 24, 18, 36, 30, 3, 23, 9, 20, 18, 44, 7, 12, 43, 30, 24, 22, 20, 35, 38, 49, 25, 16, 21 }

    Returns: 194

  45. 3

    {10, 20, 30, 30 }

    Returns: 10

  46. 3

    {1, 1, 2, 2, 3, 3 }

    Returns: 1

  47. 1

    {1, 2, 3 }

    Returns: 0

  48. 5

    {1, 1, 1, 1, 50, 50, 50, 50 }

    Returns: 49


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: