【LeetCode】 18. 4Sum 四数之和(Medium)(JAVA)
作者:互联网
【LeetCode】 18. 4Sum 四数之和(Medium)(JAVA)
题目地址: https://leetcode.com/problems/4sum/
题目描述:
Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note:
The solution set must not contain duplicate quadruplets.
Example:
Given array nums = [1, 0, -1, 0, -2, 2], and target = 0.
A solution set is:
[
[-1, 0, 0, 1],
[-2, -1, 1, 2],
[-2, 0, 0, 2]
]
题目大意
给定一个包含 n 个整数的数组 nums 和一个目标值 target,判断 nums 中是否存在四个元素 a,b,c 和 d ,使得 a + b + c + d 的值与 target 相等?找出所有满足条件且不重复的四元组。
注意:
答案中不可以包含重复的四元组。
解题方法
和三数只和一样,只是多了一层循环 【LeetCode】 15. 3Sum 三数之和(Medium)(JAVA)
对时间进行了优化,直接过大或者过小直接返回,节省了一半时间
if (pre + nums[nums.length - 1] < target || pre + nums[k + 1] > target) continue;
也可以继续优化时间,在每层 for 循环里多个判断
class Solution {
public List<List<Integer>> fourSum(int[] nums, int target) {
List<List<Integer>> res = new ArrayList<>();
if (nums.length < 4) return res;
Arrays.sort(nums);
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
Integer temp = map.get(nums[i]);
if (temp == null) {
map.put(nums[i], 1);
} else {
map.put(nums[i], temp + 1);
}
}
for (int i = 0; i < nums.length - 3; i++) {
if (i > 0 && nums[i] == nums[i - 1]) continue;
for (int j = i + 1; j < nums.length - 2; j++) {
if (j > i + 1 && nums[j] == nums[j - 1]) continue;
for (int k = j + 1; k < nums.length - 1; k++) {
if (k > j + 1 && nums[k] == nums[k - 1]) continue;
int pre = nums[i] + nums[j] + nums[k];
if (pre + nums[nums.length - 1] < target || pre + nums[k + 1] > target) continue;
int four = target - pre;
if (four < nums[k]) continue;
Integer count = map.get(four);
if (count == null) continue;
if (nums[k] == four && nums[k] > nums[j]) {
if (count < 2) continue;
}
if (nums[k] == four && nums[k] == nums[j] && nums[j] > nums[i]) {
if (count < 3) continue;
}
if (nums[k] == four && nums[k] == nums[j] && nums[j] == nums[i]) {
if (count < 4) continue;
}
List<Integer> cur = new ArrayList<>();
cur.add(nums[i]);
cur.add(nums[j]);
cur.add(nums[k]);
cur.add(four);
res.add(cur);
}
}
}
return res;
}
}
执行用时 : 25 ms, 在所有 Java 提交中击败了 52.37% 的用户
内存消耗 : 41.4 MB, 在所有 Java 提交中击败了 11.81% 的用户
标签:4Sum,四数,JAVA,target,nums,int,four,continue,&& 来源: https://blog.csdn.net/qq_16927853/article/details/104556669