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

leetcode 982

时间:2019-05-14 20:40:56      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:+=   color   key值   triplets   存储   tco   分析   etc   img   

技术图片

技术图片

题意:寻找一个整数数组A中的三个数,使得它们与为0

思路:使用 unordered_map , key键存储两层for循环后得到的与值,再将unordered_map的所有key值与A里的所有值相与,若为0则将 A.second 加到cnt中。

class Solution {
public:
    int countTriplets(vector<int>& A) {
        int cnt = 0;
        unordered_map<int , int> tri;
        for(auto i:A)
            for(auto j : A)
                ++tri[i&j];
        for(auto k:A)
            for(auto t:tri)
                if((k & t.first) == 0)
                    cnt += t.second;
        return cnt;
    }
};

技术图片

时间复杂度分析:因为A[i]的最大值为2^16,所以map的最多存储2^16个数,时间复杂度为  O(n*n)

leetcode 982

标签:+=   color   key值   triplets   存储   tco   分析   etc   img   

原文地址:https://www.cnblogs.com/Bella2017/p/10864410.html

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