Maximum subset with bitwise OR equal to k
Last Updated :
06 Apr, 2023
Given an array of non-negative integers and an integer k, find the subset of maximum length with bitwise OR equal to k.
Examples:
Input : arr[] = [1, 4, 2]
k = 3
Output : [1, 2]
Explanation: The bitwise OR of
1 and 2 equals 3. It is not possible to obtain
a subset of length greater than 2.
Input : arr[] = [1, 2, 5]
k = 4
Output : []
No subset's bitwise OR equals 4.
Method 1(Simple):
The naive method would be to consider all the subsets. While considering a subset, compute its bitwise OR. If it equals k, compare the subset's length with the maximum length so far and update the maximum length if required.
Method 2(Efficient):
0 OR 0 = 0
1 OR 0 = 1
1 OR 1 = 1
Hence, for all the positions in the binary representation of k with the bit equal to 0, the corresponding position in the binary representations of all the elements in the resulting subset should necessarily be 0.
On the other hand, for positions in k with the bit equal to 1, there has to be at least one element with a 1 in the corresponding position. The rest of the elements can have either 0 or 1 in that position. It does not matter.
Therefore, to obtain the resulting subset, traverse the initial array. While deciding if the element should be in the resulting subset or not, check whether there is any position in the binary representation of k which is 0 and the corresponding position in that element is 1. If there exists such a position, then ignore that element, else include it in the resulting subset.
How to determine if there exists a position in the binary representation of k which is 0 and the corresponding position in an element is 1?
Simply take the bitwise OR of k and that element. If it does not equal to k, then there exists such a position and the element has to be ignored. If their bitwise OR equals k, then include the current element in the resulting subset.
The final step is to determine if there is at least one element with a 1 in a position with 1 in the corresponding position in k.
Simply compute the bitwise OR of the resulting subset. If it equals k, then this is the final answer. Else no subset exists which satisfies the condition.
Steps to solve this problem:
1. declare a vector v of integers.
2. iterate through i=0 till n:
*check if arr[i] bitwise or k is equal to k than push arr[i] in v.
3. declare a variable ans=0.
4. iterate through i=0 till size of v:
*update ans to ans bitwise or v[i].
5. check if ans is not equal to k than subset doesn't exist.
6. iterate through i=0 till size of v:
*print v[i].
C++
// CPP Program to find the maximum subset
// with bitwise OR equal to k
#include <bits/stdc++.h>
using namespace std;
// function to find the maximum subset with
// bitwise OR equal to k
void subsetBitwiseORk(int arr[], int n, int k)
{
vector<int> v;
for (int i = 0; i < n; i++) {
// If the bitwise OR of k and element
// is equal to k, then include that element
// in the subset
if ((arr[i] | k) == k)
v.push_back(arr[i]);
}
// Store the bitwise OR of elements in v
int ans = 0;
for (int i = 0; i < v.size(); i++)
ans |= v[i];
// If ans is not equal to k, subset doesn't exist
if (ans != k) {
cout << "Subset does not exist" << endl;
return;
}
for (int i = 0; i < v.size(); i++)
cout << v[i] << ' ';
}
// Driver Code
int main()
{
int k = 3;
int arr[] = { 1, 4, 2 };
int n = sizeof(arr) / sizeof(arr[0]);
subsetBitwiseORk(arr, n, k);
return 0;
}
Java
// Java Program to find the maximum subset
// with bitwise OR equal to k
import java.util.*;
class GFG {
// function to find the maximum subset
// with bitwise OR equal to k
static void subsetBitwiseORk(int arr[],
int n, int k)
{
ArrayList<Integer> v =
new ArrayList<Integer>();
for (int i = 0; i < n; i++) {
// If the bitwise OR of k and
// element is equal to k, then
// include that element in the
// subset
if ((arr[i] | k) == k){
v.add(arr[i]);
}
}
// Store the bitwise OR of elements
// in v
int ans = 0;
for (int i = 0; i < v.size(); i++)
ans = ans|v.get(i);
// If ans is not equal to k, subset
// doesn't exist
if (ans != k) {
System.out.println("Subset does"
+ " not exist" );
return;
}
for (int i = 0; i < v.size(); i++)
System.out.print(v.get(i) + " " );
}
// main function
public static void main(String[] args)
{
int k = 3;
int arr[] = { 1, 4, 2 };
int n = arr.length;
subsetBitwiseORk(arr, n, k);
}
}
// This code is contributed by Arnab Kundu.
Python3
# Python3 Program to find the
# maximum subset with bitwise
# OR equal to k
# function to find the maximum
# subset with bitwise OR equal to k
def subsetBitwiseORk(arr, n, k) :
v = []
for i in range(0, n) :
# If the bitwise OR of k
# and element is equal to k,
# then include that element
# in the subset
if ((arr[i] | k) == k) :
v.append(arr[i])
# Store the bitwise OR
# of elements in v
ans = 0
for i in range(0, len(v)) :
ans |= v[i]
# If ans is not equal to
# k, subset doesn't exist
if (ans != k) :
print ("Subset does not exist\n")
return
for i in range(0, len(v)) :
print ("{} ".format(v[i]), end="")
# Driver Code
k = 3
arr = [1, 4, 2]
n = len(arr)
subsetBitwiseORk(arr, n, k)
# This code is contributed by
# Manish Shaw(manishshaw1)
C#
// C# Program to find the maximum subset
// with bitwise OR equal to k
using System;
using System.Collections;
class GFG {
// function to find the maximum subset
// with bitwise OR equal to k
static void subsetBitwiseORk(int []arr,
int n, int k)
{
ArrayList v = new ArrayList();
for (int i = 0; i < n; i++) {
// If the bitwise OR of k and
// element is equal to k, then
// include that element in the
// subset
if ((arr[i] | k) == k){
v.Add(arr[i]);
}
}
// Store the bitwise OR of
// elements in v
int ans = 0;
for (int i = 0; i < v.Count; i++)
ans = ans|(int)v[i];
// If ans is not equal to k, subset
// doesn't exist
if (ans != k) {
Console.WriteLine("Subset does"
+ " not exist" );
return;
}
for (int i = 0; i < v.Count; i++)
Console.Write((int)v[i] + " " );
}
// main function
static public void Main(String []args)
{
int k = 3;
int []arr = { 1, 4, 2 };
int n = arr.Length;
subsetBitwiseORk(arr, n, k);
}
}
// This code is contributed by Arnab Kundu
PHP
<?php
// PHP Program to find the
// maximum subset with bitwise
// OR equal to k
// function to find the maximum
// subset with bitwise OR equal to k
function subsetBitwiseORk($arr, $n, $k)
{
$v = array();
for ($i = 0; $i < $n; $i++)
{
// If the bitwise OR of k
// and element is equal to k,
// then include that element
// in the subset
if (($arr[$i] | $k) == $k)
array_push($v, $arr[$i]);
}
// Store the bitwise OR
// of elements in v
$ans = 0;
for ($i = 0; $i < count($v); $i++)
$ans |= $v[$i];
// If ans is not equal to
// k, subset doesn't exist
if ($ans != $k)
{
echo ("Subset does not exist\n");
return;
}
for ($i = 0; $i < count($v); $i++)
echo ($v[$i]." ");
}
// Driver Code
$k = 3;
$arr = array(1, 4, 2);
$n = count($arr);
subsetBitwiseORk($arr, $n, $k);
// This code is contributed by
// Manish Shaw(manishshaw1)
?>
JavaScript
<script>
// Javascript Program to find the maximum subset
// with bitwise OR equal to k
// function to find the maximum subset with
// bitwise OR equal to k
function subsetBitwiseORk(arr, n, k)
{
var v = [];
for (var i = 0; i < n; i++) {
// If the bitwise OR of k and element
// is equal to k, then include that element
// in the subset
if ((arr[i] | k) == k)
v.push(arr[i]);
}
// Store the bitwise OR of elements in v
var ans = 0;
for (var i = 0; i < v.length; i++)
ans |= v[i];
// If ans is not equal to k, subset doesn't exist
if (ans != k) {
document.write( "Subset does not exist" );
return;
}
for (var i = 0; i < v.length; i++)
document.write( v[i] + ' ');
}
// Driver Code
var k = 3;
var arr = [1, 4, 2];
var n = arr.length;
subsetBitwiseORk(arr, n, k);
</script>
Output :
1 2
Time complexity: O(N), where N is the size of the array.
Auxiliary Space : O(N)
Similar Reads
DSA Tutorial - Learn Data Structures and Algorithms DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on
7 min read
Quick Sort QuickSort is a sorting algorithm based on the Divide and Conquer that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. It works on the principle of divide and conquer, breaking down the problem into s
12 min read
Merge Sort - Data Structure and Algorithms Tutorials Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge
14 min read
SQL Commands | DDL, DQL, DML, DCL and TCL Commands SQL commands are crucial for managing databases effectively. These commands are divided into categories such as Data Definition Language (DDL), Data Manipulation Language (DML), Data Control Language (DCL), Data Query Language (DQL), and Transaction Control Language (TCL). In this article, we will e
7 min read
Data Structures Tutorial Data structures are the fundamental building blocks of computer programming. They define how data is organized, stored, and manipulated within a program. Understanding data structures is very important for developing efficient and effective algorithms. What is Data Structure?A data structure is a st
2 min read
Bubble Sort Algorithm Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity are quite high.We sort the array using multiple passes. After the fir
8 min read
Breadth First Search or BFS for a Graph Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta
15+ min read
Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc
15 min read
Insertion Sort Algorithm Insertion sort is a simple sorting algorithm that works by iteratively inserting each element of an unsorted list into its correct position in a sorted portion of the list. It is like sorting playing cards in your hands. You split the cards into two groups: the sorted cards and the unsorted cards. T
9 min read
Array Data Structure Guide In this article, we introduce array, implementation in different popular languages, its basic operations and commonly seen problems / interview questions. An array stores items (in case of C/C++ and Java Primitive Arrays) or their references (in case of Python, JS, Java Non-Primitive) at contiguous
4 min read