[leetcode] 1/15/16/18 2sum/3Sum / 3 Sum closest / 4 sum

两数之和

Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].

这题给定一个数组, 返回 满足 a + b = target 规则的 a,b 下标。

  1. 暴力的话O(n^2) 的时间内check 这个规则就ok了。
  2. 如果这个数组是个排序数组, 那么可以使用双指针 左右夹逼,因为数组有序, a+b 在 [a:b]区间内 , a往右会导致 结果变大, b往左,会导致结果变小。这样O(n)的时间内就可以找到 a+b = target 的情况。算上排序的时间复杂度,假设是快排 最终时间复杂度为O(n) + nlog(n) ,空间复杂度为O(1)
  3. 我们借助哈希表 是否可以牺牲一点空间来获得O(n)的速度。
    当我们访问a 点时, 我们把 target- a 也就是 b 点的值 存储在哈希表中当作key, a点的下标当作value。那么如果b 点真的存在, 那么遍历到b 点时,自然可以在哈希表中找到 之前存储的a点下标。
#include <unordered_map>
using namespace std;

class Solution {
public:
    // a+b = target --> b = target -a 
    //  b : index(a)
    
    vector<int> twoSum(vector<int>& nums, int target) {
        
        unordered_map<int,int> up;
        vector<int> ans;
        for(int a = 0; a< nums.size();a++){
            if (up.find(nums[a]) != up.end()){
                ans.push_back(up[nums[a]]);
                ans.push_back(a);
                return ans;
            } 
            up[target-nums[a]] = a;
        }

    }
};
image.png

三数之和

Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note:
The solution set must not contain duplicate triplets.

Example:
Given array nums = [-1, 0, 1, 2, -1, -4],
A solution set is:
[ [-1, 0, 1],
[-1, -1, 2]]

这题的规则变成 a+b+c =target

  1. 暴力检查这个规则 --> O(n^3)
  2. 如果我们固定住 c和 target , 这题就可以转化为 n 个 2sum 的问题,由上题我们知道 2sum 可以在 O(n) 的时间内用哈希表解决, 那么最终就是 O(n^2)的时间,但是要花费O(n)的空间, 如果2sum 使用双指针 两边夹逼 最终是O(nlogn) + n*n =O(n^2)的时间复杂度,但是不需要额外开辟空间。

所以 我们这里固定住 C后 ,对a+b 使用双指针 两边夹的办法。
排序后, 我们很容易找到 a,b,c在排序数组上的关系, 如下图


image.png

这题要考虑一个去重的问题,我这里处理的比较简单。

if not ans or (ans and ans[-1] != temp):
      ans.append(temp)

完整代码

class Solution:
    def threeSum(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        ans = []
        nums = sorted(nums)
        cur = 0
        while cur < len(nums)-2:
            if cur>0 and nums[cur] == nums[cur-1]:
                cur+=1
                continue      
            i = cur+1
            j = len(nums) - 1
            while i < j: 
                if nums[i]+ nums[j] == -nums[cur]:
                    temp = [nums[cur],nums[i],nums[j]]
                    if not ans or (ans and ans[-1] != temp):
                        ans.append(temp)
                    i+=1
                    j-=1
                elif nums[i]+ nums[j] > -nums[cur]:
                    j-=1
                else:
                    i+=1    
            cur+=1
        return ans
image.png

3 sum closest

Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input would have exactly one solution.
Example:
Given array nums = [-1, 2, 1, -4], and target = 1.
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

现在 规则变成了 a+b+c+ gap = target ,输出当gap 最小的时候,a,b,c的和。
实际上 这题和上一题并没有什么区别, 仍然是 一样的判断条件,只是每次根据gap = target -a- b- c 更新最小的结果就ok了。
代码如下:

class Solution:
    def threeSumClosest(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """
        
        nums= sorted(nums)
        _min = float("inf")
        _distance = float("inf")
        cur = 0
        
        while cur < len(nums)-2:
            i = cur+1
            j = len(nums)-1
            while i < j:
                distance = abs(target - (nums[i] +nums[j] +nums[cur]))
                if _distance > distance:
                    _distance = distance
                    _min =   nums[i] +nums[j] +nums[cur]
                    
                if target > nums[i] +nums[j] + nums[cur]:
                    i+=1
                elif target < nums[i] + nums[j] + nums[cur]:
                    j-=1
                else:
                    return nums[i] + nums[j] + nums[cur]
                

            cur+=1
        return _min
            
    
image.png

四数之和

将 4 sum 转化为 3 sum 在转化为 2 sum
要注意 去重的问题。

#include <algorithm>
#include <vector>
using namespace std;
class Solution {
public:
    vector<vector<int>> fourSum(vector<int>& nums, int target) {
        // res 
        vector<vector<int>> res;        
        if(nums.size() < 4){
            return res;
        }
        // sort
        sort(nums.begin(),nums.end());
        
        int c= 0, d=0;
        
        for(int a = 0; a < nums.size()-3; a++){
            // 3 sum 
            if(a==0 || (a > 0 && nums[a] != nums[a-1]) ){
                for(int b = a+1; b < nums.size()-2; b++){
                    //2 sum 
                    if(b == a+1 || (b > a+1 && nums[b] != nums[b-1]) ){
                        c = b+1;
                        d = nums.size()-1;
                        while(c < d){
                            
                            if (c> b+1 && nums[c] ==nums[c-1]){
                                c++;
                                continue;
                            }
                            if(d < nums.size()-1 && nums[d] == nums[d+1]){
                                d--;
                                continue;
                            }
                            
                            if(nums[a] + nums[b] + nums[c]+ nums[d] > target){d--;}
                            else if(nums[a] + nums[b] + nums[c] + nums[d] < target){c++;}
                            else{
                                res.push_back(vector<int>{nums[a],nums[b],nums[c],nums[d]});
                                c++;d--;
                            }  
                        }

                        
                    }
                }
            }
        } 
       
        
        return res;
        
    }
};
image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容