Algorithm


A. Kitchen Utensils
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The king's birthday dinner was attended by k guests. The dinner was quite a success: every person has eaten several dishes (though the number of dishes was the same for every person) and every dish was served alongside with a new set of kitchen utensils.

All types of utensils in the kingdom are numbered from 11 to 100100. It is known that every set of utensils is the same and consist of different types of utensils, although every particular type may appear in the set at most once. For example, a valid set of utensils can be composed of one fork, one spoon and one knife.

After the dinner was over and the guests were dismissed, the king wondered what minimum possible number of utensils could be stolen. Unfortunately, the king has forgotten how many dishes have been served for every guest but he knows the list of all the utensils left after the dinner. Your task is to find the minimum possible number of stolen utensils.

Input

The first line contains two integer numbers n and k (1n100,1k1001≤�≤100,1≤�≤100)  — the number of kitchen utensils remaining after the dinner and the number of guests correspondingly.

The next line contains n integers a1,a2,,an�1,�2,…,�� (1ai1001≤��≤100)  — the types of the utensils remaining. Equal values stand for identical utensils while different values stand for different utensils.

Output

Output a single value — the minimum number of utensils that could be stolen by the guests.

Examples
input
Copy
5 2
1 2 2 1 3
output
Copy
1
input
Copy
10 3
1 3 3 1 3 5 5 5 5 100
output
Copy
14
Note

In the first example it is clear that at least one utensil of type 33 has been stolen, since there are two guests and only one such utensil. But it is also possible that every person received only one dish and there were only six utensils in total, when every person got a set (1,2,3)(1,2,3) of utensils. Therefore, the answer is 11.

One can show that in the second example at least 22 dishes should have been served for every guest, so the number of utensils should be at least 2424: every set contains 44 utensils and every one of the 33 guests gets two such sets. Therefore, at least 1414 objects have been stolen. Please note that utensils of some types (for example, of types 22 and 44 in this example) may be not present in the set served for dishes.

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

int const N = 1e2 + 1;
int n, k, fr[N], fr1[N];

int main() {
  scanf("%d %d", &n, &k);
  for(int i = 0, tmp; i < n; ++i) {
    scanf("%d", &tmp);
    ++fr[tmp];
  }

  int res = 0;
  for(int d = 1; d <= 100; ++d) {
    memset(fr1, 0, sizeof fr1);
    for(int i = 1; i <= 100; ++i)
      if(fr[i] != 0)
        fr1[i] = k * d;
    bool ok = true;
    for(int i = 1; i <= 100; ++i) {
      if(fr1[i] < fr[i]) {
        ok = false;
        break;
      }
    }
    if(ok) {
      for(int i = 1; i <= 100; ++i)
        res += fr1[i] - fr[i];
      break;
    }
  }

  printf("%d\n", res);

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
5 2
1 2 2 1 3

Output

x
+
cmd
1
Advertisements

Demonstration


Codeforces Solution-A. Kitchen Utensils-Solution in C, C++, Java, Python ,Kitchen Utensils,Codeforces Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+