CF631C Report

Description

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.

Input Format

N/A

Output Format

N/A

Explanation/Hint

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.