LeetCode 1755. Closest Subsequence Sum Solution in Java, C++, Python & Go | Explanation + Code

CoderIndeed
0
1755. Closest Subsequence Sum

Description

You are given an integer array nums and an integer goal.

You want to choose a subsequence of nums such that the sum of its elements is the closest possible to goal. That is, if the sum of the subsequence's elements is sum, then you want to minimize the absolute difference abs(sum - goal).

Return the minimum possible value of abs(sum - goal).

Note that a subsequence of an array is an array formed by removing some elements (possibly all or none) of the original array.

 

Example 1:

Input: nums = [5,-7,3,5], goal = 6
Output: 0
Explanation: Choose the whole array as a subsequence, with a sum of 6.
This is equal to the goal, so the absolute difference is 0.

Example 2:

Input: nums = [7,-9,15,-2], goal = -5
Output: 1
Explanation: Choose the subsequence [7,-9,-2], with a sum of -4.
The absolute difference is abs(-4 - (-5)) = abs(1) = 1, which is the minimum.

Example 3:

Input: nums = [1,2,3], goal = -7
Output: 7

 

Constraints:

  • 1 <= nums.length <= 40
  • -107 <= nums[i] <= 107
  • -109 <= goal <= 109

Solutions

Solution 1

PythonJavaC++Go
class Solution: def minAbsDifference(self, nums: List[int], goal: int) -> int: n = len(nums) left = set() right = set() self.getSubSeqSum(0, 0, nums[: n // 2], left) self.getSubSeqSum(0, 0, nums[n // 2 :], right) result = inf right = sorted(right) rl = len(right) for l in left: remaining = goal - l idx = bisect_left(right, remaining) if idx < rl: result = min(result, abs(remaining - right[idx])) if idx > 0: result = min(result, abs(remaining - right[idx - 1])) return result def getSubSeqSum(self, i: int, curr: int, arr: List[int], result: Set[int]): if i == len(arr): result.add(curr) return self.getSubSeqSum(i + 1, curr, arr, result) self.getSubSeqSum(i + 1, curr + arr[i], arr, result)(code-box)

Solution 2

PythonJavaC++Go
class Solution: def minAbsDifference(self, nums: List[int], goal: int) -> int: def dfs(arr, res, i, s): if i == len(arr): res.add(s) return dfs(arr, res, i + 1, s) dfs(arr, res, i + 1, s + arr[i]) n = len(nums) left, right = set(), set() dfs(nums[: n >> 1], left, 0, 0) dfs(nums[n >> 1 :], right, 0, 0) right = sorted(right) ans = inf for l in left: x = goal - l i = bisect_left(right, x) if i < len(right): ans = min(ans, abs(x - right[i])) if i: ans = min(ans, abs(x - right[i - 1])) return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !