leetcode 982
Posted bella2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 982相关的知识,希望对你有一定的参考价值。
题意:寻找一个整数数组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的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode: 982. Triples with Bitwise AND Equal To Zero
leetcode982 Triples with Bitwise AND Equal To Zero
leetcode982. Triples with Bitwise AND Equal To Zero
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段