Minimum Total Cost
Given an array of integers, the goal is to make all the elements in the array have equal values by applying some number of operations.
The rules of the operations are:
For example, if the array is [1, 4, 2, 1] and the prefix of length 2 and x = -3 are chosen, the array would now become [-2, 1, 2, 1] and the total cost of this operation would be |x| = |-3| = 3.
The total cost is the sum of costs of each operation applied. Find the minimum total cost of making all the elements in the array have equal value.
Note: It is guaranteed that there always exists a series of operations by which all the elements in any array can be equal. These operations can be applied any number of times.
Complete the function findMinimumCost in the editor below.
findMinimumCost has the following parameter:
List<Integer> arr: an array of integers
1Example 1
- Choose the prefix of length 2 and x = -1. Hence the array now becomes [0, 1, 1, 5]. The cost of this operation is |x| = |-1| = 1.
- Choose the prefix of length 3 and x = 4. Hence the array now becomes [4, 5, 5, 5]. The cost of this operation is |x| = |4| = 4.
- Choose the prefix of length 1 and x = -1. Hence the array now becomes [5, 5, 5, 5]. The cost of this operation is |x| = |-1| = 1.