1. Overview

In this tutorial, we’ll present the problem of finding the XOR of all numbers in a given range.

First, we’ll explain the naive approach. Then, we’ll see how we can improve it in order to obtain a better solution. Finally, we’ll present a comparison between both approaches.

2. Defining the Problem

In this problem, we’re given an array of size n and multiple queries. In each query, we’re asked to calculate the bitwise XOR operation between all the elements in range [L, R].

The array doesn’t change between queries. In other words, there are no queries that ask us to change the value of a certain element inside the array.

Therefore, for each query [L, R] inside the array A, we must return the value of A_L \oplus A_{L+1} \oplus A_{L+2} \oplus ... \oplus A_R, where \oplus is the bitwise XOR operation between the elements in the range [L, R].

3. XOR Background

As we know, the bitwise XOR operation works on the two numbers bit by bit. For each bit, the result can be extracted from the presented table:

Rendered by QuickLaTeX.com

As we can see, if both bits are similar, then the XOR equals to zero. Otherwise, the result equals to one. Put differently, the bitwise XOR operation equals zero in case the number of ones is even and equals one in case the number of ones is odd.

Also, an important thing to notice is that the bitwise XOR works on each bit independently. In other words, the result of each bit doesn’t affect the result of any other bits inside the number. Keep these notes in mind when we discuss the solution in section 5.

4. Naive Approach

First, we’ll explore the naive approach. Let’s take a look at its algorithm:

Rendered by QuickLaTeX.com

In the beginning, the algorithm sets the answer to zero. After that, we iterate over the elements of the range and calculate the XOR of all of its elements. Finally, we return the calculated answer.

The complexity of the naive approach is O(n), where n is the size of the array. The reason behind this complexity is that we might end up iterating over all the elements in the worst case.

Therefore, the complexity of each query is linear.

5. Prefix-XOR Approach

Let’s try to improve our naive approach.

5.1. Precalculation Idea

Since each bit is calculated separately, we can solve the problem for each bit independently. After that, we can create a complete solution.

Suppose the problem was to handle individual bits. Same as before, we need to calculate the XOR for this bit in the range [L, R]. First, let’s create a boolean array named pref. In each cell i, we’ll store the prefix XOR of all bits in the range [0, i].

From the definition of the XOR operation in section 3, we can see that if the number of bits in the ith prefix is even, then the ith cell will equal to zero. Otherwise, the ith cell will equal to one.

Now, let’s check the original problem. We need to find the XOR of bits in the range [L, R] — in other words, whether the number of ones in the range [L, R] is even or odd.

To do this, let’s consider two values. The first value is pref[R], which covers the range [0, R]. This range covers all the elements from the needed range, plus some extra elements which are in the range [0, L-1]. Therefore, the second value is pref[L-1], which covers the range [0, L-1].

From these two values, we can conclude the value of the range [L, R].

5.2. Solution Idea

After calculating the pref array, we have four cases to consider in each query:

  1. Both pref[L-1] and pref[R] equal zero. Since pref[L-1] equals zero, the number of ones is even before starting the range [L, R]. Also, the number of ones remains even after processing the range [0, R]. This can only happen if the number of ones in the range [L, R] is even as well.
  2. Both pref[L-1] and pref[R] equal one. Since pref[L-1] equals ones, the number of ones is odd before entering the range [L, R]. Also, since pref[R] equals one, the number of ones in this range is also odd. This can only hold if the number of ones in the range [L, R] is even, which causes the parity of the bit to remain the same.
  3. pref[L-1] equals one, while pref[R] equals zero. Since the number of ones in the range [0, L-1] is odd, but then changes to be even in the range [0, R], we can conclude that the number of ones in the range [L, R] is odd.
  4. pref[L-1] equals zero, while pref[R] equals one. Since the number of ones in the range [0, L-1] is even, but then changes to be odd in the range [0, R], we can conclude that the number of ones in the range [L, R] is odd.

We can see that if both pref[R] and pref[L-1] have the same value, then the answer is zero. Otherwise, the answer equals one.

This is equivalent to performing the XOR operation between pref[R] and pref[L-1]. Therefore, the answer is simply pref[R] \oplus pref[L-1], where \oplus is the bitwise XOR operation.

5.3. Precalculation Algorithm

In order to form a general solution, we need to calculate the prefix XOR array pref.

Let’s take a look at the implementation of this step:

Rendered by QuickLaTeX.com

The idea is based on dynamic programming. In the beginning, we know that the answer of Pref[0] equals zero.

Next, for each range [0, i], we can calculate its answer from the range [0, i-1]. The only difference between these two ranges is A[i]. Therefore, we need to add A[i] to the range [0, i-1]. In other words, pref[i] \gets pref[i-1] \oplus A[i]. In the end, we return the calculated array pref.

The complexity of the precalculation step is O(n), where n is the number of elements in the array A.

5.4. Answering the Queries

After building the pref array, we can answer each query with the same approach discussed in section 5.2.

Let’s take a look at the algorithm of answering the queries:

Rendered by QuickLaTeX.com

As we can see, we just return the XOR between pref[R] and pref[L-1] as discussed in section 5.2. The complexity of answering each query is O(1).

6. Comparison

Consider the table that shows a comparison between both approaches:

Rendered by QuickLaTeX.com

Obviously, the prefix XOR approach is better when it comes to comparing complexities. However, it requires us to calculate the pref array in advance. After that, we can answer each query efficiently at the complexity of O(1).

One thing to keep in mind is that this only holds when we don’t change the values of the elements in the array A. When we have two types of queries, either changing the value of a single element or answering a query of the XOR of elements in the range [L, R], both approaches have the same complexity.

Therefore, we can use the naive approach, which is simpler.

7. Conclusion

In this tutorial, we explained the problem of calculating the XOR of a given range of numbers. First, we presented the naive approach. Next, we discussed the theoretical idea and implementation of the prefix XOR approach.

Finally, we presented a summary comparison between the two approaches.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.