Back to course home
0% completed
Vote For New Content
Solution: Minimize Maximum of Array
Problem Statement
Given a positive integer array nums
, return the minimum possible value
of the maximum integer
of nums after performing multiple operations.
In one operation, you must:
- Select any index
i
such that1 <= i < n
andnums[i] > 0
. - Increase
nums[i - 1]
by1
. - Decrease
nums[i]
by1
.
Examples
Example 1:
- Input: nums =
[4, 5, 3, 2, 1, 6]
- Expected Output:
5
- Justification: We can perform operations to decrease the last element (6) to 5 and increase the fifth element to 2. Here, the maximum array element is 5.
.....
.....
.....
Like the course? Get enrolled and start learning!
On this page