Javatpoint Logo
Javatpoint Logo

Number of elements greater than K in the range L to R using Fenwick Tree (Offline queries)

The Fenwick Tree, also known as a Binary Indexed Tree (BIT), is a data structure that is primarily used for executing dynamic cumulative frequency searches on arrays in an effective manner. It's very useful for range-based computations, especially when the dataset is static or updated infrequently. The Fenwick Tree is useful for computing the number of elements greater than a specified value inside a given range [L, R].

What exactly is a Fenwick Tree?

The Fenwick Tree is a flexible data structure that may be used to do efficient prefix sum computations over an array. It is designed for cumulative frequency operations, with logarithmic time complexity for updates and queries. Its ease of use and efficiency make it a popular choice for dealing with range-based operations in a variety of programming challenges.

Structure and Construction:

The construction of a Fenwick Tree entails storing cumulative amounts at various points along the tree. The following steps are done to build the Fenwick Tree for an array of size N:

Initialization: To begin, make an array of N+1 zeros. This array will be the foundation for building the Fenwick Tree.

Construction: Traverse the original array and update the Fenwick Tree by adding items as needed. The tree is modified depending on the binary encoding of the index, with bitwise operations used to browse and update tree nodes effectively.

Query Operations

The Fenwick Tree is well-suited for range-based searches, particularly prefix sum queries. The algorithm for executing a prefix sum query is rather simple.

Query: To compute the cumulative total in the original array up to a certain index 'i,' traverse the Fenwick Tree, taking into account suitable intervals depending on 'i's binary representation. To get the required outcome, add these intervals together.

Algorithm

  1. Sorting queries: Sort the queries in non-descending order depending on the 'R' value.
  2. Fenwick Tree Initialization: Create a Fenwick Tree for the supplied array.
  3. Initialise Result Array: Create an array that will hold the results of each query.
  4. Process Queries: Go through the sorted queries and use the Fenwick Tree to count the number of entries in the range [L, R] that are greater than 'K.' Update the result array as needed.
  5. Results: Display the results of all queries.

Pseudocode

Implementation

Output:

Number of elements greater than K in the range L to R using Fenwick Tree (Offline queries)

Explanation

  • FenwickTree is a class representing a Fenwick Tree data structure.
  • __init__(self, size): Initializes the Fenwick Tree with a given size and creates a Binary Indexed Tree (BIT) array (self.bit) of size + 1 with elements initialized to zero.
  • update(self, idx, val): Updates the Fenwick Tree by adding val to the element at index idx and propagating the update through the tree based on the Binary Indexed Tree logic.
  • query(self, idx): Retrieves the cumulative sum up to the index idx in the Fenwick Tree by summing elements based on the Binary Indexed Tree logic.
  • count_elements_greater_than_k(arr, queries): This function takes an array arr and a list of queries.
  • It initializes a Fenwick Tree fenwick with a size determined by the maximum value of R in the queries or the length of the array, whichever is greater.
  • The function sorts the queries based on their R values (the upper bound of the range).
  • For each query [L, R, K] in the sorted order:

It calculates the count of elements greater than 'K' in the range [L, R] by subtracting the cumulative sums at indices R and L - 1 in the Fenwick Tree.

It updates the Fenwick Tree by incrementing the count of the element at index arr[L - 1].







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA