Premium Only Content

2275. Largest Combination With Bitwise AND Greater Than Zero
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 to 1 & 5 & 3 = 1.
Also, for nums = [7], the bitwise AND is 7.
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.
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 <= 105
1 <= candidates[i] <= 107
class Solution {
public:
int largestCombination(vector<int>& candidates) {
int limit = 24;
int ans=0;
for(int i=0; i<limit; i++){
int count=0;
for(int c : candidates){
if(c>>i & 1){
count++;
ans = max(ans,count);
}
}
}
return ans;
}
};
class Solution {
public:
int largestCombination(vector<int>& candidates) {
int limit = 24;
vector<int> ans;
for(int i=23; i>=0; i--){
int count=0;
vector<int> temp;
for(int c : candidates){
if(c>>i & 1){
temp.push_back(c);
}
}
if(ans.size() < temp.size()){
ans = temp;
}
}
for(int a : ans)
cout<<a<<" ";
return ans.size();
}
};
-
DVR
iCkEdMeL
1 hour agoBOMBSHELL: Shooter’s Trans Partner Helped Take Him Down
9.75K8 -
1:42:45
The Big Migâ„¢
6 hours agoThe Islamic Invasion – The EU Has Fallen, A Warning For The USA |EP653
20.3K23 -
LIVE
Joker Effect
1 hour agoRUMBLE IN THE DEN 4 - Hungry fighters and NFL legend fight for respect
582 watching -
44:37
Rebel News
2 hours ago🔴 LIVE NOW: Massive ‘Unite the Kingdom’ Rally in London ft. Tommy Robinson | UKrebels.com
26.2K34 -
17:22
Professor Nez
2 hours ago💣BOMBSHELL: The Biden AutoPen Scandal JUST GOT REAL!
4.22K12 -
2:20:03
I_Came_With_Fire_Podcast
10 hours agoRevelations from the Ukrainian Front Lines
27.5K2 -
52:56
X22 Report
6 hours agoMr & Mrs X - Big Pharma Vaccine/Drug Agenda Is Being Exposed To The People - Ep 7
85.3K50 -
1:41:59
THE Bitcoin Podcast with Walker America
11 hours ago $17.40 earnedThe Assassination of Charlie Kirk | Walker America, American Hodl, Erik Cason, Guy Swann
69K34 -
21:33
marcushouse
6 hours ago $1.19 earnedSpaceX Just Revealed the Plan for Starship Flight 11! 🚀
29.5K9 -
35:03
Clownfish TV
9 hours ago'Live by the Sword, Die by the Sword.' | Clownfish TV
34.5K84