给你一个由 n
个整数组成的数组 nums
,和一个目标值 target
。请你找出并返回满足下述全部条件且不重复 的四元组 [nums[a], nums[b], nums[c], nums[d]]
(若两个四元组元素一一对应,则认为两个四元组重复):
0 <= a, b, c, d < n
a
、b
、c
和d
互不相同nums[a] + nums[b] + nums[c] + nums[d] == target
你可以按 任意顺序 返回答案 。
示例 1:
输入:nums = [1,0,-1,0,-2,2], target = 0
输出:[[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]
示例 2:
输入:nums = [2,2,2,2,2], target = 8
输出:[[2,2,2,2]]
python
class Solution(object):
def fourSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[List[int]]
"""
nums.sort()
n = len(nums)
if not nums or n < 3:
return []
res = []
for i in range(n):
# 如果第一个值大于零,直接返回空
if nums[i] > 0 and nums[i]>target and target>0:
break
# 如果当前值等于上一个值,跳过,进入下一次循环,去除重复值
if i > 0 and nums[i] == nums[i - 1]:
continue
for j in range(i+1,n):
if nums[i] + nums[j] > target and target>0:
break
if j > i+1 and nums[j] == nums[j-1]:
continue
L = j + 1
R = n - 1
while (L < R): # 如果 L>R 或者 L=R 就结束
if nums[i] + nums[j] + nums[L] + nums[R] == target:
res.append([nums[i],nums[j], nums[L], nums[R]])
while L < R and nums[L] == nums[L + 1]:
L = L + 1
while L < R and nums[R] == nums[R - 1]:
R = R - 1
L = L + 1
R = R - 1
# 如果三数之和大于零,就将R--
elif nums[i] + nums[j] + nums[L] + nums[R] > target:
R = R - 1
else:
L = L + 1
return res