zoukankan      html  css  js  c++  java
  • 15. 3Sum(C++)

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

    For example, given array S = [-1, 0, 1, 2, -1, -4],
    
    A solution set is:
    [
      [-1, 0, 1],
      [-1, -1, 2]
    ]

    solution :

    class Solution {
    public:
      vector<vector<int>> threeSum(vector<int>& nums) {
        int len=nums.size();
        vector<vector<int>> solution;//(m);
        std::sort(nums.begin(),nums.end());
        for(int i=0;i<len;i++){
          int sum=-nums[i];
          int left=i+1;
          int right=len-1;
          while(left<right){
            int number=nums[left]+nums[right];
            if(sum>number){
              left++;
            }else if(sum<number){
              right--;
            }else{
              vector<int> tmp(3,0);
              tmp[0]=nums[i];
              tmp[1]=nums[left];
              tmp[2]=nums[right];
              solution.push_back(tmp);
              while(left<right && nums[left]==tmp[1]) left++;
              while(left<right && nums[right]==tmp[2]) right--;
            }
          }
          while(i+1<len && nums[i]==nums[i+1]) i++;
        }
        return solution;
      }
    };




  • 相关阅读:
    BZOJ2298: [HAOI2011]problem a
    BZOJ4066: 简单题
    BZOJ2131: 免费的馅饼
    Educational Codeforces Round 97 div2
    [SCOI2016]背单词
    [SCOI2015]情报传递(离线树状数组跑图)
    树上主席树(无代码,单纯谈思路的一篇水文)
    CF Round #679 div2赛后总结
    [SCOI2015]小凸解密码(平衡树、线段树做法)
    CF Round #677 div3 赛后总结
  • 原文地址:https://www.cnblogs.com/devin-guwz/p/6498574.html
Copyright © 2011-2022 走看看