You are given an array \(A[]\) of \(N\) positive numbers. You are also given \(Q\) queries. Each query contains two integers \(l, r\ (l \leq r)\). For each query, determine the sum of all values that must be added to each number in range \(l\) to \(r\) such that bitwise AND of all numbers in the range is greater than 0.
You are required to minimize the total value that must be added. The value you must add to numbers is not necessarily equal for all numbers.
Note: Each query is independent of each other, that is, for each query, you must treat the range over the initial input array.
Input format
- The first line contains an integer \(N\) denoting the number of array elements.
- The next line denotes \(N\) array elements.
- The next line contains a number \(Q\) denoting the number of queries.
- Next \(Q\) lines contain two integers \(l\) and \(r\).
Output format
For each query, print the minimum sum of values to be added in a new line.
Constraints
\(1 \leq N \leq 10^5\)
\(1 \leq A[i] \leq 10^9 \)
\(1 \leq Q \leq 10^5\)
\(1 \leq l \leq r \leq N\)
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Login to unlock the editorial