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
. - If
nums[changeIndices[s]]
is equal to0
, mark the indexchangeIndices[s]
. - Do nothing.
Return an integer denoting the earliest second in the range [1, m]
when all indices in nums
can be marked by choosing operations optimally, or -1
if it is impossible.
Key Insights
- Each index in
nums
can only be marked when its value is decremented to zero. - The order of operations matters as we have a fixed number of seconds (
m
) to mark all indices. - We need to track which indices can be marked at each second based on the decremented values.
- If any index in
nums
is not referenced inchangeIndices
, marking all indices is impossible.
Space and Time Complexity
Time Complexity: O(m + n)
Space Complexity: O(n)
Solution
The solution involves iterating over the changeIndices
array to keep track of how many times we can mark each index and how many decrements are needed for each index in nums
. We can use a degreed
array to count how many times we need to decrement each index. We will use a queue to efficiently manage the marking operations as we simulate each second.