DEV Community

Cover image for April LeetCoding Challenge 2021 — Day 6: Minimum Operations to Make Array Equal
Sourav
Sourav

Posted on

April LeetCoding Challenge 2021 — Day 6: Minimum Operations to Make Array Equal

Today, we will solve the 6th problem of the April LeetCoding Challenge 2021.

Problem Statement

You have an array arr of length n where arr[i] = (2 * i) + 1 for all valid values of i (i.e. 0 <= i < n).

In one operation, you can select two indices x and y where 0 <= x, y < n and subtract 1 from arr[x] and add 1 to arry. The goal is to make all the elements of the array equal. It is guaranteed that all the elements of the array can be made equal using some operations.

Given an integer n, the length of the array. Return the minimum number of operations needed to make all the elements of arr equal.

Example 1:

**Input:** n = 3
**Output:** 2
**Explanation:** arr = [1, 3, 5]
First operation choose x = 2 and y = 0, this leads arr to be [2, 3, 4]
In the second operation choose x = 2 and y = 0 again, thus arr = [3, 3, 3].
Enter fullscreen mode Exit fullscreen mode

Example 2:

**Input:** n = 6
**Output:** 9
Enter fullscreen mode Exit fullscreen mode

Solution

This is a basic problem. Here we have to make all the elements of the array equal by a particular operation. We have to find the minimum number of steps to make the array elements equal.

To do this task in minimum steps, we can convert the elements into their mean value.

According to the question, the elements at i-th index is (2*i)+1 . Therefore the mean of these elements will be n ,which is given in the question.

The code is given below.

The code can be found here

LeetCode

I have been solving Leetcode problems for around a year or so. Suddenly I have developed a passion of writing tutorials for these problems. I am starting with Leetcode problem, in future I will try to make tutorials on Spring,Android,Java,Algorithms and many more.

Follow me on medium - https://sourav-saikia.medium.com
Follow me on dev.to - https://dev.to/sksaikia
Follow me on twitter - https://twitter.com/sourav__saikia
Connect on Linkedin - www.linkedin.com/in/sourav-kumar-saikia

The following table contains all the problems with their respective solution tutorials. I will try to add more articles to it soon.

March LeetCoding Challenge

Top comments (0)