Problem
The bitwise AND of an array nums is the bitwise AND of all integers in nums.
- For example, for
nums = [1, 5, 3], the bitwise AND is equal to1 & 5 & 3 = 1. - Also, for
nums = [7], the bitwise AND is7.
You are given an array of positive integers candidates. Compute the bitwise AND for all possible combinations of elements in the candidates array.
Return the size of the largest combination of candidates with a bitwise AND greater than 0.
https://leetcode.cn/problems/largest-combination-with-bitwise-and-greater-than-zero/
Example 1:
Input:
candidates = [16,17,71,62,12,24,14]
Output:4
Explanation: The combination[16,17,62,24]has a bitwise AND of16 & 17 & 62 & 24 = 16 > 0.
The size of the combination is 4.
It can be shown that no combination with a size greater than 4 has a bitwise AND greater than 0.
Note that more than one combination may have the largest size.
For example, the combination[62,12,24,14]has a bitwise AND of62 & 12 & 24 & 14 = 8 > 0.
Example 2:
Input:
candidates = [8,8]
Output:2
Explanation: The largest combination[8,8]has a bitwise AND of8 & 8 = 8 > 0.
The size of the combination is 2, so we return 2.
Constraints:
1 <= candidates.length <= 10⁵1 <= candidates[i] <= 10⁷
Test Cases
1 | class Solution: |
1 | import pytest |
Thoughts
对于每一个可能的二进制位,统计所有数字有多少个在这一位是 1,这些数字做按位与之后的结果一定不为零。最终看哪一位对应的数字数量最多即可。
Code
1 | class Solution: |