博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
18.4Sum (Map)
阅读量:5420 次
发布时间:2019-06-15

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

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:

  • 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)

思路I: 用求3Sum的方法,外加一次for循环,时间复杂度O(n3)

class Solution {public:    vector
> fourSum(vector
& nums, int target) { int size = nums.size(); if(size < 3) return result; sort(nums.begin(), nums.end()); for(int i = 0; i < size-3; i++){ if(i > 0 && nums[i]==nums[i-1]) continue; //The solution set must not contain duplicate=>no duplicate in the same position for(int j = i+1; j < size-2; j++){ if(j> i+1 && nums[j]==nums[j-1]) continue; //The solution set must not contain duplicate=>no duplicate in the same position find(nums, j+1, size-1, target-nums[i]-nums[j], i, j); } } return result; } void find(vector
& nums, int start, int end, int target, int& index1, int& index2){ int sum; while(start
no duplicate in the same position start++; }while(start!= end && nums[start] == nums[start-1]); do{ //The solution set must not contain duplicate=>no duplicate in the same position end--; }while(end!=start && nums[end] == nums[end+1]); } else if(sum>target){ do{ //The solution set must not contain duplicate=>no duplicate in the same position end--; }while(end!=start && nums[end] == nums[end+1]); } else{
//The solution set must not contain duplicate=>no duplicate in the same position do{ start++; }while(start!= end && nums[start] == nums[start-1]); } } } private: vector
> result; vector
item;};

 

思路II:用hash table。O(N^2)把所有pair存入hash表,pair中两个元素的和就是hash值。那么接下来求4sum就变成了在所有的pair value中求 2sum,这个就成了线性算法了。所以整体上这个算法是O(N^2)+O(n) = O(N^2)。

class Solution {public:    vector
> fourSum(vector
& nums, int target) { int size = nums.size(); int a, b, c, d; vector
> result; unordered_map
> > mp; unordered_map
cnt; //各个数的数量 if(size < 3) return result; sort(nums.begin(), nums.end()); for(int i = 0; i < size-1; i++){ if(i > 0 && nums[i]==nums[i-1]) continue; for(int j = i+1; j < size; j++){ if(j> i+1 && nums[j]==nums[j-1]) continue; mp[nums[i]+nums[j]].push_back(pair
{nums[i],nums[j]}); } } for(int i = 0; i < size; i++){ cnt[nums[i]]++; } for(unordered_map
> >::iterator it1=mp.begin();it1!=mp.end();it1++){ //遍历map unordered_map
> >::iterator it2=mp.find(target - it1->first); //查找map if(it2==mp.end()) continue;// not found if(it1->first > it2->first) continue; //already checked,去重 for(int i = 0; i < it1->second.size(); i++){ //访问map元素 for(int j = 0; j < it2->second.size(); j++){ a = it1->second[i].first; //访问pair元素 b = it1->second[i].second; c = it2->second[j].first; d = it2->second[j].second; if(max(a,b) > min(c,d)) continue; //四个数两两组合,有6种情况,这里只取两个最小的数在it1的情况,去重 cnt[a]--; cnt[b]--; cnt[c]--; cnt[d]--; if(cnt[a]<0||cnt[b]<0||cnt[c]<0||cnt[d]<0){ cnt[a]++; cnt[b]++; cnt[c]++; cnt[d]++; continue; } cnt[a]++; cnt[b]++; cnt[c]++; cnt[d]++; vector
tmp = {a,b,c,d}; sort(tmp.begin(),tmp.end()); result.push_back(tmp); } } } return result; }};

 

转载于:https://www.cnblogs.com/qionglouyuyu/p/4687188.html

你可能感兴趣的文章
SQL单表查询
查看>>
打砖块游戏入门代码
查看>>
无服务器端的UDP群聊功能剖析 文章索引
查看>>
android studio 新建项目导入到Coding远程仓库git
查看>>
比较ole db/odbc/ado/ado.net/jdbc
查看>>
@bzoj - 4381@ [POI2015] Odwiedziny
查看>>
React Native-目前最火的前端技术?
查看>>
多图片上传插件
查看>>
Linux设置定时任务
查看>>
git命令的使用
查看>>
eclipse 自定义代码块设置(代码模板)
查看>>
Pandas选择数据
查看>>
webpack最佳入门实践系列(10)
查看>>
poj2411铺砖——状压DP
查看>>
一日一笑话
查看>>
【开源】OSharp框架解说系列(5.2):EntityFramework数据层实现
查看>>
centos 彻底删除nodejs默认安装文件
查看>>
20180709
查看>>
懒得写了,直接复制代码了。。。跨公司发料到订单和退料
查看>>
20145228 《信息安全系统设计基础》第六周学习总结 (1)
查看>>