Class Solution
- java.lang.Object
-
- g2201_2300.s2275_largest_combination_with_bitwise_and_greater_than_zero.Solution
-
public class Solution extends Object
2275 - Largest Combination With Bitwise AND Greater Than Zero.Medium
The bitwise AND of an array
numsis the bitwise AND of all integers innums.- 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. Evaluate the bitwise AND of every combination of numbers ofcandidates. Each number incandidatesmay only be used once in each combination.Return the size of the largest combination of
candidateswith a bitwise AND greater than0.Example 1:
Input: candidates = [16,17,71,62,12,24,14]
Output: 4
Explanation: The combination [16,17,62,24] has a bitwise AND of 16 & 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 of 62 & 12 & 24 & 14 = 8 > 0.
Example 2:
Input: candidates = [8,8]
Output: 2
Explanation: The largest combination [8,8] has a bitwise AND of 8 & 8 = 8 > 0.
The size of the combination is 2, so we return 2.
Constraints:
1 <= candidates.length <= 1051 <= candidates[i] <= 107
- For example, for
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intlargestCombination(int[] candidates)
-