Problem Description
You are given a 0-indexed array nums
that consists of n
distinct positive integers. Apply m
operations to this array, where in the i
th operation you replace the number operations[i][0]
with operations[i][1]
. It is guaranteed that in the i
th operation, operations[i][0]
exists in nums
, and operations[i][1]
does not exist in nums
. Return the array obtained after applying all the operations.
Key Insights
- Each operation involves a direct replacement of an existing number with a new number.
- Since all numbers in
nums
are distinct, each operation can be performed without worrying about duplicates. - The operations can be efficiently processed using a mapping structure to track the replacements.
Space and Time Complexity
Time Complexity: O(n + m), where n is the length of nums
and m is the number of operations. This accounts for the initial setup and the processing of each operation.
Space Complexity: O(n), for storing the initial state of the array and any necessary mappings.
Solution
To solve the problem, we will utilize a dictionary to map the values in the nums
array to their respective indices. As we process each operation, we'll directly replace the target value (operations[i][0]
) with the new value (operations[i][1]
). This approach ensures that the operations are applied in constant time for each replacement since we can directly access the index of the element to be replaced.