Maximum Element After Decreasing and Rearranging — LeetCode 1846 Python Solution

MediumGreedyArraySorting
Problem
#1846
Pattern
Greedy
Reading time
2 min

The problem

You are given an array of positive integers arr. Perform some operations (possibly none) on arr so that it satisfies these conditions: The value of the first element in arr must be 1.

Example

Input
arr = [2,2,1,2,1]
Output
2
Explanation
We can satisfy the conditions by rearranging arr so it becomes [1,2,2,2,1].

Python solution

Python
class Solution:
    def maximumElementAfterDecrementingAndRearranging(self, arr: List[int]) -> int:
        arr.sort()
        arr[0] = 1
        for i in range(1, len(arr)):
            d = max(0, arr[i] - arr[i - 1] - 1)
            arr[i] -= d
        return max(arr)

Complexity

MeasureComplexity
TimeO(n \times \log n)
SpaceO(\log n) auxiliary

Pattern: Greedy

Take the locally best option every time — when you can prove that never costs you later. LeetCode 1846. Maximum Element After Decreasing and Rearranging is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Greedy.

The greedy guide has the Python template for the pattern and the 346 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 1846. Maximum Element After Decreasing and Rearranging?
LeetCode 1846. Maximum Element After Decreasing and Rearranging is rated Medium on LeetCode.
What is the time complexity of LeetCode 1846. Maximum Element After Decreasing and Rearranging?
The Python solution on this page runs in O(n \times \log n).
What is the space complexity of LeetCode 1846. Maximum Element After Decreasing and Rearranging?
The Python solution on this page uses O(\log n) auxiliary space.
What topics does LeetCode 1846. Maximum Element After Decreasing and Rearranging cover?
LeetCode 1846. Maximum Element After Decreasing and Rearranging is tagged Greedy, Array and Sorting on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview