Xor Rectangle

3.9

17 votes
Approved, Basic Programming, Bit manipulation, Math, Medium
Problem

You have an array of N integers S1,S2,...SN. Consider a N x N matrix such that Ai,j=SiSj. Here indicates bitwise xor operator.
You have been given Q queries. Each query consists of four integers x1,y1,x2,y2 which denotes a submatrix with (x1,y1) as their top-left corner and (x2,y2) as their bottom-right corner such that x1x2 and y1y2. For each of the query, you have to print summation of all integers lying in queried submatrix.

INPUT:
First line of input consists of integer N. Next line consist of N space separated integers denoting array S1,S2,...SN. Next line consists of integer Q denoting total number of queries. Next Q lines consist of four integers x1,y1,x2,y2 denoting the queried submatrix.

OUTPUT:
For each of the query, print a single number in a separate line which denotes summation of all the numbers lying in queried submatrix.

CONSTRAINTS:
1N106
1Si106
1Q106
1x1x2N
1y1y2N

Sample Input
4
1 2 3 4
2
1 2 3 4
1 1 1 1
Sample Output
25
0
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

Matrix A is as follows:
0,3,2,5
3,0,1,6
2,1,0,7
5,6,7,0

Editor Image

?