Value in a given range with maximum XOR
Last Updated :
16 Oct, 2023
Given positive integers N, L, and R, we have to find the maximum value of N ? X, where X ? [L, R].
Examples:
Input : N = 7
L = 2
R = 23
Output : 23
Explanation : When X = 16, we get 7 ? 16 = 23 which is the maximum value for all X ? [2, 23].
Input : N = 10
L = 5
R = 12
Output : 15
Explanation : When X = 5, we get 10 ? 5 = 15 which is the maximum value for all X ? [5, 12].
Brute force approach: We can solve this problem using brute force approach by looping over all integers over the range [L, R] and taking their XOR with N while keeping a record of the maximum result encountered so far. The complexity of this algorithm will be O(R - L), and it is not feasible when the input variables approach high values such as 109.
Efficient approach: Since the XOR of two bits is 1 if and only if they are complementary to each other, we need X to have complementary bits to that of N to have the maximum value. We will iterate from the largest bit (log2(R)th Bit) to the lowest (0th Bit). The following two cases can arise for each bit:
- If the bit is not set, i.e. 0, we will try to set it in X. If setting this bit to 1 results in X exceeding R, then we will not set it.
- If the bit is set, i.e. 1, then we will try to unset it in X. If the current value of X is already greater than or equal to L, then we can safely unset the bit. In the other case, we will check if setting all of the next bits is enough to keep X >= L. If not, then we are required to set the current bit. Observe that setting all the next bits is equivalent to adding (1 << b) - 1, where b is the current bit.
The time complexity of this approach is O(log2(R)).
C++
// CPP program to find the x in range [l, r]
// such that x ^ n is maximum.
#include <cmath>
#include <iostream>
using namespace std;
// Function to calculate the maximum value of
// N ^ X, where X is in the range [L, R]
int maximumXOR(int n, int l, int r)
{
int x = 0;
for (int i = log2(r); i >= 0; --i)
{
if (n & (1 << i)) // Set bit
{
if (x + (1 << i) - 1 < l)
x ^= (1 << i);
}
else // Unset bit
{
if ((x ^ (1 << i)) <= r)
x ^= (1 << i);
}
}
return n ^ x;
}
// Driver Code
int main()
{
int n = 7, l = 2, r = 23;
cout << "The output is " << maximumXOR(n, l, r);
return 0;
}
Java
// Java program to find the x in range [l, r]
// such that x ^ n is maximum.
import java.util.*;
import java.lang.*;
import java.io.*;
class GFG
{
// Function to calculate the maximum value of
// N ^ X, where X is in the range [L, R]
static int maximumXOR(int n, int l, int r)
{
int x = 0;
for (int i = (int)(Math.log(r)/Math.log(2)); i >= 0; --i)
{
if ((n & (1 << i))>0) // Set bit
{
if (x + (1 << i) - 1 < l)
x ^= (1 << i);
}
else // Unset bit
{
if ((x ^ (1 << i)) <= r)
x ^= (1 << i);
}
}
return n ^ x;
}
// Driver function
public static void main(String args[])
{
int n = 7, l = 2, r = 23;
System.out.println( "The output is " + maximumXOR(n, l, r));
}
}
// This code is Contributed by tufan_gupta2000
Python3
# Python program to find the
# x in range [l, r] such that
# x ^ n is maximum.
import math
# Function to calculate the
# maximum value of N ^ X,
# where X is in the range [L, R]
def maximumXOR(n, l, r):
x = 0
for i in range(int(math.log2(r)), -1, -1):
if (n & (1 << i)): # Set bit
if (x + (1 << i) - 1 < l):
x ^= (1 << i)
else: # Unset bit
if (x ^ (1 << i)) <= r:
x ^= (1 << i)
return n ^ x
# Driver code
n = 7
l = 2
r = 23
print("The output is",
maximumXOR(n, l, r))
# This code was contributed
# by VishalBachchas
C#
// C# program to find the x in range
// [l, r] such that x ^ n is maximum.
using System;
class GFG
{
// Function to calculate the
// maximum value of N ^ X,
// where X is in the range [L, R]
public static int maximumXOR(int n,
int l, int r)
{
int x = 0;
for (int i = (int)(Math.Log(r) /
Math.Log(2)); i >= 0; --i)
{
if ((n & (1 << i)) > 0) // Set bit
{
if (x + (1 << i) - 1 < l)
{
x ^= (1 << i);
}
}
else // Unset bit
{
if ((x ^ (1 << i)) <= r)
{
x ^= (1 << i);
}
}
}
return n ^ x;
}
// Driver Code
public static void Main(string[] args)
{
int n = 7, l = 2, r = 23;
Console.WriteLine("The output is " +
maximumXOR(n, l, r));
}
}
// This code is contributed
// by Shrikant13
JavaScript
<script>
// Javascript program to find
// the x in range [l, r]
// such that x ^ n is maximum.
// Function to calculate the maximum value of
// N ^ X, where X is in the range [L, R]
function maximumXOR(n, l, r)
{
let x = 0;
for (let i =
parseInt(Math.log(r) / Math.log(2)); i >= 0; --i)
{
if (n & (1 << i)) // Set bit
{
if (x + (1 << i) - 1 < l)
x ^= (1 << i);
}
else // Unset bit
{
if ((x ^ (1 << i)) <= r)
x ^= (1 << i);
}
}
return n ^ x;
}
// Driver Code
let n = 7, l = 2, r = 23;
document.write("The output is " + maximumXOR(n, l, r));
</script>
PHP
<?php
// PHP program to find the x in range
// [l, r] such that x ^ n is maximum.
// Function to calculate the maximum
// value of N ^ X, where X is in the
// range [L, R]
function maximumXOR($n, $l, $r)
{
$x = 0;
for ($i = log($r, 2); $i >= 0; --$i)
{
if ($n & (1 << $i))
{
// Set bit
if ($x + (1 << $i) - 1 < $l)
$x ^= (1 << $i);
}
else
{
// Unset bit
if (($x ^ (1 << $i)) <= $r)
$x ^= (1 << $i);
}
}
return $n ^ $x;
}
// Driver Code
$n = 7;
$l = 2;
$r = 23;
echo "The output is " ,
maximumXOR($n, $l, $r);
// This code is contributed by ajit
?>
Time complexity: O(log2r)
Auxiliary Space: O(1)
Approach#2: Using Brute Force
One way to solve this problem is to try all possible values of X in the given range and find the one that gives the maximum XOR value with N.
Algorithm
1. Define a function max_XOR(N, L, R) that takes N, L and R as input.
2. Initialize a variable max_XOR_val to 0.
3. For each value of X in the range [L, R], calculate the XOR value of N and X.
4. If the XOR value is greater than max_XOR_val, update max_XOR_val with this value.
5. Return max_XOR_val as the output.
C++
#include <iostream>
using namespace std;
int max_XOR(int N, int L, int R) {
int max_XOR_val = 0;
for (int X = L; X <= R; X++) {
int XOR_val = N ^ X;
if (XOR_val > max_XOR_val) {
max_XOR_val = XOR_val;
}
}
return max_XOR_val;
}
int main() {
int N = 7;
int L = 2;
int R = 23;
cout << max_XOR(N, L, R) << endl;
N = 10;
L = 5;
R = 12;
cout << max_XOR(N, L, R) << endl;
return 0;
}
Java
public class Main {
// Function to find the maximum XOR value between N and integers in the range [L, R]
public static int maxXOR(int N, int L, int R) {
int maxXORValue = 0;
for (int X = L; X <= R; X++) {
int XORValue = N ^ X; // Calculate the XOR value between N and X
if (XORValue > maxXORValue) {
maxXORValue = XORValue; // Update the maximum XOR value if a larger one is found
}
}
return maxXORValue;
}
public static void main(String[] args) {
int N = 7;
int L = 2;
int R = 23;
// Find and print the maximum XOR value for the given parameters
System.out.println( maxXOR(N, L, R));
N = 10;
L = 5;
R = 12;
// Find and print the maximum XOR value for the updated parameters
System.out.println( maxXOR(N, L, R));
}
}
Python3
def max_XOR(N, L, R):
max_XOR_val = 0
for X in range(L, R+1):
XOR_val = N ^ X
if XOR_val > max_XOR_val:
max_XOR_val = XOR_val
return max_XOR_val
# Example usage
N = 7
L = 2
R = 23
print(max_XOR(N, L, R))
N = 10
L = 5
R = 12
print(max_XOR(N, L, R))
C#
using System;
public class MainClass
{
// Function to find the maximum XOR value between N and integers in the range [L, R]
public static int MaxXOR(int N, int L, int R)
{
int maxXORValue = 0;
for (int X = L; X <= R; X++)
{
int XORValue = N ^ X; // Calculate the XOR value between N and X
if (XORValue > maxXORValue)
{
maxXORValue = XORValue; // Update the maximum XOR value if a larger one is found
}
}
return maxXORValue;
}
public static void Main(string[] args)
{
int N = 7;
int L = 2;
int R = 23;
// Find and print the maximum XOR value for the given parameters
Console.WriteLine(MaxXOR(N, L, R));
N = 10;
L = 5;
R = 12;
// Find and print the maximum XOR value for the updated parameters
Console.WriteLine(MaxXOR(N, L, R));
}
}
JavaScript
// Function to find the maximum XOR value between N and numbers in the range [L, R]
function max_XOR(N, L, R) {
// Variable to store the maximum XOR value
let max_XOR_val = 0;
// Iterate over the range [L, R]
for (let X = L; X <= R; X++) {
// Calculate the XOR value between N and X
let XOR_val = N ^ X;
// Update the maximum XOR value if necessary
if (XOR_val > max_XOR_val) {
max_XOR_val = XOR_val;
}
}
// Return the maximum XOR value
return max_XOR_val;
}
// Example usage
let N = 7;
let L = 2;
let R = 23;
console.log(max_XOR(N, L, R)); // Output: 31
N = 10;
L = 5;
R = 12;
console.log(max_XOR(N, L, R)); // Output: 15
Time Complexity: O(R-L+1)
Space Complexity: O(1)
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
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
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
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
Dijkstra's Algorithm to find Shortest Paths from a Source to all
Given a weighted undirected graph represented as an edge list and a source vertex src, find the shortest path distances from the source vertex to all other vertices in the graph. The graph contains V vertices, numbered from 0 to V - 1.Note: The given graph does not contain any negative edge. Example
12 min read
Selection Sort
Selection Sort is a comparison-based sorting algorithm. It sorts an array by repeatedly selecting the smallest (or largest) element from the unsorted portion and swapping it with the first unsorted element. This process continues until the entire array is sorted.First we find the smallest element an
8 min read