CF414C.Mashmokh and Reverse Operation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 aa of length 2n2^{n} and mm queries on it. The ii -th query is described by an integer qiq_{i} . In order to perform the ii -th query you must:

  • split the array into 2nqi2^{n-q_{i}} parts, where each part is a subarray consisting of 2qi2^{q_{i}} numbers; the jj -th subarray (1<=j<=2nqi)(1<=j<=2^{n-q_{i}}) should contain the elements a[(j1)2qi+1],a[(j1)2qi+2],...,a[(j1)2qi+2qi]a[(j-1)·2^{q_{i}}+1],a[(j-1)·2^{q_{i}}+2],...,a[(j-1)·2^{q_{i}}+2^{q_{i}}] ;
  • reverse each of the subarrays;
  • join them into a single array in the same order (this array becomes new array aa );
  • output the number of inversions in the new aa .

Given initial array aa and all the queries. Answer all the queries. Please, note that the changes from some query is saved for further queries.

输入格式

The first line of input contains a single integer n (0<=n<=20)n (0<=n<=20) .

The second line of input contains 2n2^{n} space-separated integers a[1],a[2],...,a[2n] (1<=a[i]<=109)a[1],a[2],...,a[2^{n}] (1<=a[i]<=10^{9}) , the initial array.

The third line of input contains a single integer m (1<=m<=106)m (1<=m<=10^{6}) .

The fourth line of input contains mm space-separated integers q1,q2,...,qm (0<=qi<=n)q_{1},q_{2},...,q_{m} (0<=q_{i}<=n) , the queries.

Note: since the size of the input and output could be very large, don't use slow output techniques in your language. For example, do not use input and output streams (cin, cout) in C++.

输出格式

Output mm lines. In the ii -th line print the answer (the number of inversions) for the ii -th query.

输入输出样例

  • 输入#1

    2
    2 1 4 3
    4
    1 2 0 2
    

    输出#1

    0
    6
    6
    0
    
  • 输入#2

    1
    1 2
    3
    0 1 1
    

    输出#2

    0
    1
    0
    

说明/提示

If we reverse an array x[1],x[2],...,x[n]x[1],x[2],...,x[n] it becomes new array y[1],y[2],...,y[n]y[1],y[2],...,y[n] , where y[i]=x[ni+1]y[i]=x[n-i+1] for each ii .

The number of inversions of an array x[1],x[2],...,x[n]x[1],x[2],...,x[n] is the number of pairs of indices i,ji,j such that: i<j and x[i]>x[j] .

首页