4Sum II

LeetCode Q 454 - 4Sum II

Given four lists A, B, C, D of integer values, compute how many tuples (i, j, k, l) there are such that A[i] + B[j] + C[k] + D[l] is zero.

To make problem a bit easier, all A, B, C, D have same length of N where 0 ≤ N ≤ 500. All integers are in the range of -2^28 to 2^28 - 1 and the result is guaranteed to be at most 2^31 - 1.

Solution

The solution is quite similar to Two Sum.
We use a HashMap to store the possible sum of every pair in A and B.
Then we check if the sum of some pair in C and D equals to -key in the map.

Time Complexity: O(n^2)

Code:

public int fourSumCount(int[] A, int[] B, int[] C, int[] D) {
	<Integer, Integer> map = new HashMap<>();
	for (int a: A) {
		for (int b: B) {
			map.put(a + b, map.getOrDefault(a + b, 0) + 1);
		}
	}

	int res = 0;
	for (int c: C) {
		for (int d: D) {
			if (map.containsKey(-c-d)) res += map.get(-c-d);
		}
	}

	return res;
}

   Reprint policy


《4Sum II》 by Tong Shi is licensed under a Creative Commons Attribution 4.0 International License
 Previous
Two Sum Two Sum
LeetCode Q 1 - Two SumGiven an array of integers, return indices of the two numbers such that they add up to a specific
2019-04-17 Tong Shi
Next 
4Sum 4Sum
LeetCode Q 18 - 4SumGiven an array nums of n integers and an integer target, are there elements a, b, c, and d in nums s
2019-04-17 Tong Shi
  TOC