#codefestival2016qualCb. [codefestival_2016_qualC_b]K Cakes
[codefestival_2016_qualC_b]K Cakes
Problem Statement
There are pieces of cakes. Mr. Takahashi would like to eat one cake per day, taking days to eat them all.
There are types of cake, and the number of the cakes of type () is .
Eating the same type of cake two days in a row would be no fun, so Mr. Takahashi would like to decide the order for eating cakes that minimizes the number of days on which he has to eat the same type of cake as the day before.
Compute the minimum number of days on which the same type of cake as the previous day will be eaten.
Constraints
Input
The input is given from Standard Input in the following format:
Output
Print the minimum number of days on which the same type of cake as the previous day will be eaten.
Sample Input 1
7 3
3 2 2
Sample Output 1
0
For example, if Mr. Takahashi eats cakes in the order of , he can avoid eating the same type of cake as the previous day.
Sample Input 2
6 3
1 4 1
Sample Output 2
1
There are cakes. For example, if Mr. Takahashi eats cakes in the order of , he has to eat the same type of cake (i.e., type ) as the previous day only on the fourth day. Since this is the minimum number, the answer is .
Sample Input 3
100 1
100
Sample Output 3
99
Since Mr. Takahashi has only one type of cake, he has no choice but to eat the same type of cake as the previous day from the second day and after.