Problem Description
You are given two 1-indexed integer arrays, nums
and changeIndices
, having lengths n
and m
, respectively. Initially, all indices in nums
are unmarked. Your task is to mark all indices in nums
. In each second, s
, in order from 1
to m
(inclusive), you can perform one of the following operations:
- Choose an index
i
in the range[1, n]
and decrementnums[i]
by1
. - Set
nums[changeIndices[s]]
to any non-negative value. - Choose an index
i
in the range[1, n]
, wherenums[i]
is equal to0
, and mark indexi
. - Do nothing.
Return an integer denoting the earliest second in the range
[1, m]
when all indices innums
can be marked by choosing operations optimally, or-1
if it is impossible.
Key Insights
- The ability to mark an index relies on managing the values in the
nums
array effectively. - You can use the
changeIndices
array strategically to set elements ofnums
to zero. - The sequence of operations must be optimized to ensure that all indices can be marked within the time constraints.
- It's crucial to track both the decrement actions and the setting actions to find the earliest possible second to mark all indices.
Space and Time Complexity
Time Complexity: O(n + m)
Space Complexity: O(n)
Solution
The solution involves keeping track of the nums
array and the changeIndices
, using a greedy strategy to minimize the time needed to mark all indices. The approach involves:
- Using a priority queue to manage the indices of
nums
based on their values, allowing for efficient access to the smallest values to mark. - Iterating through the
changeIndices
to either set values innums
to zero or decrement existing values. - Keeping a count of how many indices can be marked and determining if all can be marked within the given time.