博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode 4Sum II
阅读量:5291 次
发布时间:2019-06-14

本文共 1186 字,大约阅读时间需要 3 分钟。

原题链接在这里:

题目:

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:

Input:A = [ 1, 2]B = [-2,-1]C = [-1, 2]D = [ 0, 2]Output:2Explanation:The two tuples are:1. (0, 0, 0, 1) -> A[0] + B[0] + C[0] + D[1] = 1 + (-2) + (-1) + 2 = 02. (1, 1, 0, 0) -> A[1] + B[1] + C[0] + D[0] = 2 + (-1) + (-1) + 0 = 0

题解:

考虑这题时, 4个list太复杂,应该往简化版考虑. 如果只有2个list, 就很清楚了,一个list的值放进HashMap<Integer, Integer> hm中计算key的count.

再iterate 另一个list, 看hm中是否有当前数字的负数, 若有的话,有几个就有几种组合.

再反过来考虑4个list, 其实就是两两合并. AB合并, CD合并 与 AC合并, BD合并其实没有区别, 从结果的角度考虑,其实是没有变化的.

Time Complexity: O(n^2). n = A.length.

Space: O(n).

AC Java:

1 public class Solution { 2     public int fourSumCount(int[] A, int[] B, int[] C, int[] D) { 3         int res = 0; 4         int len = A.length; 5         HashMap
hm = new HashMap
(); 6 7 for(int i = 0; i

与类似.

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/6525846.html

你可能感兴趣的文章
C#基础_注释和VS常用快捷键(一)
查看>>
http协议
查看>>
动态调用webservice
查看>>
2017-05-18
查看>>
python带header
查看>>
虚拟DOM
查看>>
IClient for js开发之地图的加载
查看>>
用css画三角形(提示框三角形)
查看>>
Uber中国在地方城市的人员架构是怎样的?
查看>>
再来一篇装逼老文章:屏幕传输算法
查看>>
Delphi 7下最小化到系统托盘
查看>>
抖动代码
查看>>
lsblk请参阅块设备
查看>>
SVM-SVM概述
查看>>
STL algorithm算法lower_bound和upper_bound(31)
查看>>
linux系统下怎么安装.deb文件?
查看>>
javascript常见编程模式举例
查看>>
列出man手册所有函数的方法
查看>>
[从jQuery看JavaScript]-匿名函数与闭包(Anonymous Function and Closure)【转】
查看>>
VisualStudio 常用快捷键-整理
查看>>