Class Solution
-
- All Implemented Interfaces:
public final class Solution2449 - Minimum Number of Operations to Make Arrays Similar\.
Hard
You are given two positive integer arrays
numsandtarget, of the same length.In one operation, you can choose any two distinct indices
iandjwhere0 <= i, j < nums.lengthand:set
nums[i] = nums[i] + 2andset
nums[j] = nums[j] - 2.
Two arrays are considered to be similar if the frequency of each element is the same.
Return the minimum number of operations required to make
numssimilar totarget. The test cases are generated such thatnumscan always be similar totarget.Example 1:
Input: nums = 8,12,6, target = 2,14,10
Output: 2
Explanation: It is possible to make nums similar to target in two operations:
Choose i = 0 and j = 2, nums = 10,12,4.
Choose i = 1 and j = 2, nums = 10,14,2.
It can be shown that 2 is the minimum number of operations needed.
Example 2:
Input: nums = 1,2,5, target = 4,1,3
Output: 1
Explanation: We can make nums similar to target in one operation: - Choose i = 1 and j = 2, nums = 1,4,3.
Example 3:
Input: nums = 1,1,1,1,1, target = 1,1,1,1,1
Output: 0
Explanation: The array nums is already similiar to target.
Constraints:
n == nums.length == target.length<code>1 <= n <= 10<sup>5</sup></code>
<code>1 <= numsi, targeti<= 10<sup>6</sup></code>
It is possible to make
numssimilar totarget.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final LongmakeSimilar(IntArray nums, IntArray target)-
-
Method Detail
-
makeSimilar
final Long makeSimilar(IntArray nums, IntArray target)
-
-
-
-