#2659

Make Array Empty

Hard
ArrayBinary SearchGreedyBinary Indexed TreeSegment TreeSortingOrdered SetHash MapArray
LeetCode ↗

Approaches

Brute ForceOptimal
Complexity Comparison
Brute ForceOptimal Solution
Time
O(n²)
O(n log n)
Space
O(1)
O(n)
💡

Intuition

Time O(n log n)Space O(n)

The optimal solution leverages the fact that we can track the order of removals without actually modifying the array. By using a mapping of values to their indices, we can determine the number of operations needed efficiently.

⚙️

Algorithm

3 steps
  1. 1Step 1: Create a mapping of each number to its index.
  2. 2Step 2: Sort the numbers based on their values.
  3. 3Step 3: Iterate through the sorted list and calculate the number of operations needed based on the index positions.
solution.py7 lines
1def make_array_empty(nums):
2    index_map = {num: i for i, num in enumerate(nums)}
3    sorted_nums = sorted(nums)
4    operations = 0
5    for i in range(len(sorted_nums)):
6        operations += index_map[sorted_nums[i]] + 1 + i
7    return operations

Complexity note: The optimal solution runs in O(n log n) due to the sorting step, while the space complexity is O(n) for the index mapping.

  • 1The order of removals is determined by the values in the array, not their positions.
  • 2Tracking indices allows us to compute the number of operations without physically modifying the array.

Solutions and explanations are original Tejav content. Problem titles © LeetCode — use the LeetCode button above for the full problem statement.