//给你一个由 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]]
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public List<List<Integer>> fourSum(int[] nums, int target) {
// 同三数之和同样, 双指针解法
// a+b+c+d =target
// 对 nums 排序
Arrays.sort(nums);
ArrayList<List<Integer>> res = new ArrayList<>();
for (int i = 0; i < nums.length; i++) {
// 剪枝 ( 先过滤掉 全是负数的情况;)
if (target > 0 && nums[i]>target ) {
return res;
}
//去重 a ( a 和 b 不能 重复; 所以需要对比i-1)
// i > 0 否则 index会出现-1; 数组的index不能为-1;
if (i > 0 && nums[i] == nums[i-1]){
continue;
}
for (int j = i+1; j < nums.length; j++) {
//b 去重 j-1 不能=i;
if ( j > i+1 && nums[j] == nums[j-1]){
continue;
}
int left = j+1;
int right= nums.length-1;
//指针移动
while(left < right) {
// int sum = nums[i]+nums[j]+nums[left]+nums[right];
// int会溢出
long sum = (long)nums[i]+nums[j]+nums[left]+nums[right];
if (sum < target) {
left++;
} else if (sum > target) {
right--;
}else {
res.add(Arrays.asList(nums[i], nums[j], nums[left], nums[right]));
// c d 去重
while ( left < right && nums[left] == nums[left+1]) left++;
while ( left < right && nums[right] == nums[right-1]) right--;
left++ ;
right-- ;
}
}
}
}
return res;
}
}
//leetcode submit region end(Prohibit modification and deletion)