Ice Cream Sticks
Learn this problemProblem statement
Given an array A[] denoting heights of N ice cream sticks and a positive integer K, modify the height of each stick either by increasing or decreasing them by K only once and then find out the least difference in the heights between the shortest and longest sticks.
For example, consider that the heights are 0, 6, 11 and K=7. We can change 0 to 7, 6 to 9, and 11 to 4. The maximum difference is between 4 and 9, which is 5. We cannot minimise this difference.
Input
The first line of input contains a positive integer K.
The second line of input contains a positive integer N, representing the number of sticks.
The third line of the input contains N integers, representing the heights of N sticks.
Output
The minimum of the maximum difference of heights possible.
Function
getMinimumDifference(K: int, A: int[]) → intExamples
Example 1
K = 2A = [2, 6, 9, 11]return = 5
Explanation: 2->4, 6->8, 9->7, 11->9. So, the maximum difference is 5 (9-4).
Example 2
K = 20A = [3, 4, 5]return = 2Constraints
0 < K <= 300 < N <= 300 <= A[i] <= 500