Mashmokh's boss, Bimokh, didn't like Mashmokh. So he fired him. Mashmokh decided to go to university and participate in ACM instead of finding a new job. He wants to become a member of Bamokh's team. In order to join he was given some programming tasks and one week to solve them. Mashmokh is not a very experienced programmer. Actually he is not a programmer at all. So he wasn't able to solve them. That's why he asked you to help him with these tasks. One of these tasks is the following.
You have an array
a of length
2n and
m queries on it. The
i-th query is described by an integer
qi. In order to perform the
i-th query you must:
-
split the array into 2n-qi parts, where each part is a subarray consisting of 2qi numbers; the j-th subarray (1≤j≤2n-qi) should contain the elements a[(j-1)·2qi+1],a[(j-1)·2qi+2],...,a[(j-1)·2qi+2qi];
-
reverse each of the subarrays;
-
join them into a single array in the same order (this array becomes new array a);
-
output the number of inversions in the new a.
Given initial array
a and all the queries. Answer all the queries. Please, note that the changes from some query is saved for further queries.
Output
Output
m lines. In the
i-th line print the answer (the number of inversions) for the
i-th query.
Note
If we reverse an array
x[1],x[2],...,x[n] it becomes new array
y[1],y[2],...,y[n], where
y[i]=x[n-i+1] for each
i.
The number of inversions of an array
x[1],x[2],...,x[n] is the number of pairs of indices
i,j such that:
i<j and
x[i]>x[j].