Problem Description
You are given a 2D integer grid of size m x n and an integer x. In one operation, you can add x to or subtract x from any element in the grid. A uni-value grid is a grid where all the elements of it are equal. Return the minimum number of operations to make the grid uni-value. If it is not possible, return -1.
Key Insights
- The difference between any two elements in the grid must be a multiple of x for it to be possible to make all elements equal.
- We need to find a target value that minimizes the number of operations required to make all elements equal.
- A good candidate for the target is the median of the grid values, as it minimizes the sum of absolute deviations.
Space and Time Complexity
Time Complexity: O(m * n) - We traverse the grid to compute the differences and operations. Space Complexity: O(1) - We use a constant amount of additional space for calculations.
Solution
To solve this problem, we will:
- Flatten the 2D grid into a 1D list.
- Check if all elements can be made equal by verifying if the difference between the maximum and minimum element is divisible by x.
- Calculate the median of the list, as it serves as the optimal target value for minimizing operations.
- Count the total operations required to make all elements equal to the median by computing the sum of absolute differences divided by x.