leetcode 18 4Sum

Question:Given an array S of n integers, are there elements a, b, c, 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:
Elements in a quadruplet (a,b,c,d) must be in non-descending order. (ie, a ≤ b ≤ c ≤ d)
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)
class Solution {
public:
    vector<vector<int>> fourSum(vector<int>& nums, int target) {}
}

1 题目思路分析##

本题与3Sum的基本思路相同,都是先排序,然后先取好前两个数,最后两个数来夹逼。

1.1 基本思路( O(n^3) )###

按照基本思路,有两个版本,一个自己写的,一个是书里的,自己写的结果一个测试用例超时(64ms), 书里的(44ms)过了,郁闷。

1.1.1 自己写的

class Solution {
public:
    vector<vector<int>> fourSum(vector<int>& nums, int target) {
        sort( nums.begin(), nums.end() );
        int size= nums.size();
        auto last=nums.end();
        auto start=nums.begin();
        vector<vector<int>>result;
        
        if(size<4) return result;
        
        for(auto h=start; h<(last-3); h++)
        {
            if( h!=start && *h == *(h-1) ) continue;
            
            for (auto i=h+1; i<(last-2); i++)
            {
                if ( i!= (h+1) && *i==*(i-1) ) continue;
                    
                auto j=i+1;
                auto k=last-1;
                
                while (j<k)
                {
                    if (*h + *i + *j + *k < target)
                    {
                        j++;
                        while (*j == *(j-1) && j<k ) j++;
                    }
                    
                    else if(*h + *i + *j + *k > target)
                    {
                        k--;
                        while (*k == *(k+1) && j<k) k--;
                    }
                    
                    else
                    {
                        result.push_back({*h, *i, *j, *k});
                        j++;
                        k--;
                        while (*j==*(j-1) && *k==*(k+1) && j<k) j++;
                    }
                }
            }
            
        }
        
        return result;
    }
};

1.1.2 书上的

class Solution {
public:
    vector<vector<int>> fourSum(vector<int>& num, int target)
    {
        vector<vector<int>> result;
        if (num.size() < 4) return result;
        sort(num.begin(), num.end());
        auto last = num.end();
        for (auto a = num.begin(); a < prev(last, 3); ++a)
        {
            for (auto b = next(a); b < prev(last, 2); ++b)
            {
                auto c = next(b);
                auto d = prev(last);
                while (c < d)
                {
                    if (*a + *b + *c + *d < target) c++;
                    else if (*a + *b + *c + *d > target) d--;
                    else
                    {
                        result.push_back({ *a, *b, *c, *d });
                        ++c;
                        --d;
                    }
                }
            }
        }
        sort(result.begin(), result.end());
        result.erase(unique(result.begin(), result.end()), result.end());
        return result;
    }
};

1.2 优化

书上讲了几个优化的方法

1.2.1 利用map来缓存前两个的和####

unordered_map< int, vector< pair< int, int> > > cache;

class Solution {
public:
   vector<vector<int> > fourSum(vector<int> &num, int target)
   {
       vector<vector<int>> result;
       if (num.size() < 4) return result;
       sort(num.begin(), num.end());
       unordered_map<int, vector<pair<int, int> > > cache;
       
       for (size_t a = 0; a < num.size(); ++a)
       {
           for (size_t b = a + 1; b < num.size(); ++b)
           {
               cache[num[a] + num[b]].push_back(pair<int, int>(a, b));
           }
       }
       for (int c = 0; c < num.size(); ++c)
       {
           for (size_t d = c + 1; d < num.size(); ++d)
           {
               const int key = target - num[c] - num[d];
               if (cache.find(key) == cache.end()) continue;
               const auto& vec = cache[key];
               for (size_t k = 0; k < vec.size(); ++k)
               {
                   if (c <= vec[k].second) continue;
                   result.push_back( { num[vec[k].first], num[vec[k].second], num[c], num[d] });
               }
           }
       }
       sort(result.begin(), result.end());
       result.erase(unique(result.begin(), result.end()), result.end());
       return result;
   }
};

1.2.1 利用multi_map来缓存前两个的和####

用一个 hashmap 先缓存两个数的和,时间复杂度 O(n^2),空间复杂度 O(n^2)
// @author 龚陆安 (http://weibo.com/luangong)

class Solution {
public:
      vector<vector<int>> fourSum(vector<int>& num, int target) 
      {
          vector<vector<int>> result;
          if (num.size() < 4) return result;
          sort(num.begin(), num.end());
          unordered_multimap<int, pair<int, int>> cache;
          for (int i = 0; i + 1 < num.size(); ++i)
              for (int j = i + 1; j < num.size(); ++j)
                  cache.insert(make_pair(num[i] + num[j], make_pair(i, j)));//!!!!!!!!!!!!!!!!!!!
          for (auto i = cache.begin(); i != cache.end(); ++i) 
          {
              int x = target - i->first;
              auto range = cache.equal_range(x);
              for (auto j = range.first; j != range.second; ++j) 
              {
                  auto a = i->second.first;
                  auto b = i->second.second;
                  auto c = j->second.first;
                  auto d = j->second.second;
                  if (a != c && a != d && b != c && b != d) 
                  {
                      vector<int> vec = { num[a], num[b], num[c], num[d] };
                      sort(vec.begin(), vec.end());
                      result.push_back(vec);
                  }
              }
          }
          sort(result.begin(), result.end());
          result.erase(unique(result.begin(), result.end()), result.end());
          return result;
     }
 };
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容