Problem Description
You are given two positive integer arrays nums1
and nums2
, both of length n
. The absolute sum difference of arrays nums1
and nums2
is defined as the sum of |nums1[i] - nums2[i]|
for each 0 <= i < n
. You can replace at most one element of nums1
with any other element in nums1
to minimize the absolute sum difference. Return the minimum absolute sum difference after replacing at most one element in the array nums1
. Since the answer may be large, return it modulo 10^9 + 7
.
Key Insights
- The absolute sum difference can be calculated directly by summing the absolute differences for all indices.
- Replacing one element in
nums1
can potentially reduce the absolute sum difference if it aligns better with the corresponding element innums2
. - Using binary search can help efficiently find the best candidate for replacement in
nums1
to minimize the absolute sum difference. - The overall approach involves calculating the initial absolute sum difference and then checking the effect of replacements.
Space and Time Complexity
Time Complexity: O(n log n)
Space Complexity: O(n)
Solution
To solve the problem, we first calculate the initial absolute sum difference between nums1
and nums2
. Then, for each element in nums2
, we use binary search to find the closest element in nums1
that can be used for replacement. The goal is to minimize the absolute difference for that index by replacing nums1[i]
with the closest value found. Finally, we return the minimum absolute sum difference modulo 10^9 + 7
.