CF1032A.Kitchen Utensils
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 1 to 100 . 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.
输入格式
The first line contains two integer numbers n and k ( 1≤n≤100,1≤k≤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≤ai≤100 ) — the types of the utensils remaining. Equal values stand for identical utensils while different values stand for different utensils.
输出格式
Output a single value — the minimum number of utensils that could be stolen by the guests.
输入输出样例
输入#1
5 2 1 2 2 1 3
输出#1
1
输入#2
10 3 1 3 3 1 3 5 5 5 5 100
输出#2
14
说明/提示
In the first example it is clear that at least one utensil of type 3 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) of utensils. Therefore, the answer is 1 .
One can show that in the second example at least 2 dishes should have been served for every guest, so the number of utensils should be at least 24 : every set contains 4 utensils and every one of the 3 guests gets two such sets. Therefore, at least 14 objects have been stolen. Please note that utensils of some types (for example, of types 2 and 4 in this example) may be not present in the set served for dishes.