Report

题意翻译

给定n个整数组成的序列和m个操作,每个操作给定ti和ri,操作分为两种: - ti为1,则将前ri个数按照连续不减序(从小到大)排列; - ti为2,则将前ri个数按照连续不增序(从大到小)排列。 求m次操作过后的序列。

题目描述

Each month Blake gets the report containing main economic indicators of the company "Blake Technologies". There are $ n $ commodities produced by the company. For each of them there is exactly one integer in the final report, that denotes corresponding revenue. Before the report gets to Blake, it passes through the hands of $ m $ managers. Each of them may reorder the elements in some order. Namely, the $ i $ -th manager either sorts first $ r_{i} $ numbers in non-descending or non-ascending order and then passes the report to the manager $ i+1 $ , or directly to Blake (if this manager has number $ i=m $ ). Employees of the "Blake Technologies" are preparing the report right now. You know the initial sequence $ a_{i} $ of length $ n $ and the description of each manager, that is value $ r_{i} $ and his favourite order. You are asked to speed up the process and determine how the final report will look like.

输入输出格式

输入格式


The first line of the input contains two integers $ n $ and $ m $ ( $ 1<=n,m<=200000 $ ) — the number of commodities in the report and the number of managers, respectively. The second line contains $ n $ integers $ a_{i} $ ( $ |a_{i}|<=10^{9} $ ) — the initial report before it gets to the first manager. Then follow $ m $ lines with the descriptions of the operations managers are going to perform. The $ i $ -th of these lines contains two integers $ t_{i} $ and $ r_{i} $ (![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF631C/2b47eb89ee7b6063f7a48e9fc1ad20b107383eb0.png), $ 1<=r_{i}<=n $ ), meaning that the $ i $ -th manager sorts the first $ r_{i} $ numbers either in the non-descending (if $ t_{i}=1 $ ) or non-ascending (if $ t_{i}=2 $ ) order.

输出格式


Print $ n $ integers — the final report, which will be passed to Blake by manager number $ m $ .

输入输出样例

输入样例 #1

3 1
1 2 3
2 2

输出样例 #1

2 1 3 

输入样例 #2

4 2
1 2 4 3
2 3
1 2

输出样例 #2

2 4 1 3 

说明

In the first sample, the initial report looked like: 1 2 3. After the first manager the first two numbers were transposed: 2 1 3. The report got to Blake in this form. In the second sample the original report was like this: 1 2 4 3. After the first manager the report changed to: 4 2 1 3. After the second manager the report changed to: 2 4 1 3. This report was handed over to Blake.