Problem
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 -228 to 228 - 1 and the result is guaranteed to be at most 231 - 1.
Example:
1 | Input: |
Analysis
这是一道4Sum的系列题,实际上和2Sum的关系更大。如果暴力求解的话,就是一个四重循环,复杂度为$O(n^4)$。既然2Sum可以降低复杂度,这道题目是否也可以采取类似的思路呢?当然是可以的。我们先处理A、B,把他们的各种组合的和记录到一个map中,然后再处理C、D计算出他们的各种组合的和,然后取相反数,看看能不能在map中找到。如果能找到,说明四个数字之和为0,答案数量+1。
Solution
实际上是2Sum的一个扩展,还是使用map。
Code
1 | class Solution { |
Summary
这道题目是2Sum的一个扩展,实际上它考察了对2Sum的理解。这道题目降低复杂度的思路实际上是先两两合并,转化为2Sum求解。这道题目的分享到这里,谢谢您的支持!