307719: CF1401F. Reverse and Swap
Memory Limit:256 MB
Time Limit:3 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Reverse and Swap
题意翻译
给您一个长度为 $2^n$ 的数组 $a$,您现在需要处理 $q$ 个询问,每个询问是以下 4 种类型之一: 1. $Replace(x, k)$ 把 $a_x$ 修改为 $k$; 2. $Reverse(k)$ 对于每一个 $i(i\ge 1)$ ,把区间 $[(i-1)\cdot 2^k+1, i\cdot 2^k]$ 的元素翻转; 3. $Swap(k)$ 对于每一个 $i(i\ge 1)$ ,交换区间 $[(2i-2)\cdot2^k+1,(2i-1)\cdot2^k]$ 和 $[(2i-1)\cdot2^k+1,2i\cdot2^k]$ 的所有元素; 4. $Sum(l,r)$ 输出区间 $[l,r]$ 中所有元素的和。 您需要写一个能快速处理以上询问的程序。题目描述
You are given an array $ a $ of length $ 2^n $ . You should process $ q $ queries on it. Each query has one of the following $ 4 $ types: 1. $ Replace(x, k) $ — change $ a_x $ to $ k $ ; 2. $ Reverse(k) $ — reverse each subarray $ [(i-1) \cdot 2^k+1, i \cdot 2^k] $ for all $ i $ ( $ i \ge 1 $ ); 3. $ Swap(k) $ — swap subarrays $ [(2i-2) \cdot 2^k+1, (2i-1) \cdot 2^k] $ and $ [(2i-1) \cdot 2^k+1, 2i \cdot 2^k] $ for all $ i $ ( $ i \ge 1 $ ); 4. $ Sum(l, r) $ — print the sum of the elements of subarray $ [l, r] $ . Write a program that can quickly process given queries.输入输出格式
输入格式
The first line contains two integers $ n $ , $ q $ ( $ 0 \le n \le 18 $ ; $ 1 \le q \le 10^5 $ ) — the length of array $ a $ and the number of queries. The second line contains $ 2^n $ integers $ a_1, a_2, \ldots, a_{2^n} $ ( $ 0 \le a_i \le 10^9 $ ). Next $ q $ lines contains queries — one per line. Each query has one of $ 4 $ types: - " $ 1 $ $ x $ $ k $ " ( $ 1 \le x \le 2^n $ ; $ 0 \le k \le 10^9 $ ) — $ Replace(x, k) $ ; - " $ 2 $ $ k $ " ( $ 0 \le k \le n $ ) — $ Reverse(k) $ ; - " $ 3 $ $ k $ " ( $ 0 \le k < n $ ) — $ Swap(k) $ ; - " $ 4 $ $ l $ $ r $ " ( $ 1 \le l \le r \le 2^n $ ) — $ Sum(l, r) $ . It is guaranteed that there is at least one $ Sum $ query.
输出格式
Print the answer for each $ Sum $ query.
输入输出样例
输入样例 #1
2 3
7 4 9 9
1 2 8
3 1
4 2 4
输出样例 #1
24
输入样例 #2
3 8
7 0 8 8 7 1 5 2
4 3 7
2 1
3 2
4 1 6
2 3
1 5 16
4 8 8
3 0
输出样例 #2
29
22
1