Problem Statement
Pattern:
Solution
Minimize the maximum difference between heights || Love Babbar DSA sheet - YouTube
int getMinDiff(int[] arr, int n, int k) {
// code here
Arrays.sort(arr);
int smallest = arr[0]+k;
int largest = arr[n-1]-k;
int min, max, ans = arr[n-1] - arr[0];
for (int i = 0; i < n-1; i++) {
min = Math.min(smallest, arr[i+1]-k); // smallest larger el
max = Math.max(largest, arr[i]+k); // largest smaller el
if(min < 0) continue;
ans = Math.min(ans, max-min);
}
return ans;
}
Notes
- So the approach is we already know one kind of trivial solution:
- increase first el by k
smallest = arr[0]+k
and decrease last (biggest) by k.largest = arr[n-1]-k
there difference is one possibleans
. - now we have to start looking at
i+1
(second element after the first) and subtract k, maybe we get a smaller value thanarr[0]+k
which when subtracted from a differentlargest
element gives a smaller difference. - similiarly we search for a largest uptil
(n-2)
arr[i]+k
might give a larger element which when subtracted byk
might give a newlargest
- increase first el by k
Minimize the Heights I | Practice | GeeksforGeeks
same q but no check for min < 0