码迷,mamicode.com
首页 > 其他好文 > 详细

4Sum

时间:2016-09-30 01:00:53      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

Given an array S of n integers, are there elements abc, and d in S 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.

For example, given array S = [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]
]

 

Subscribe to see which companies asked 

 

class Solution{
public:
    vector<vector<int>> fourSum(vector<int> & nums,int target){
        vector<vector<int>> res;
        if(nums.size()<4)
            return res;

        sort(nums.begin(),nums.end());
        unordered_map<int,vector<pair<int,int>>> cache;
        for(size_t i =0 ;i< nums.size();i++){
            for (size_t j = i+ 1;j<nums.size();j++){
                cache[nums[i]+nums[j]].push_back(pair<int,int>{i,j});
            }
        }

        for(size_t i=0;i<nums.size();i++){
            for (size_t j = i+1;j<nums.size();j++){
                int key = target - nums[i] - nums[j];
                if(cache.find(key) == cache.end()){
                    continue;
                }

                vector<pair<int,int>> vec = cache[key];
                for(size_t k = 0;k < vec.size();k++){
                    if(vec[k].first <= j)
                        continue;
                    res.push_back({nums[vec[k].first],nums[vec[k].second],nums[i],nums[j]});
                }
            }
        }
        sort(res.begin(),res.end());
         res.erase(unique(res.begin(),res.end()),res.end());
        return res;
    }
};

 

4Sum

标签:

原文地址:http://www.cnblogs.com/wxquare/p/5921986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!