403654: GYM101234 A Hacker Cups and Balls
Description
The dark side of Dreamoon, Ademnoor, wants to play an interesting game with you. Did you hear about the game "cups and balls"? Here is the hacker version of it!
There are n cups and n balls, both are numbered 1, 2, ..., n. At each moment of time, there is exactly one ball in each cup. Initially, ai-th ball is placed in the i-th cup. Admenoor will perform m magic operations on these balls and cups. The i-th operation will sort all the balls in the cups numbered between li and ri, inclusive. The sorting could be performed in either ascending order or descending order. After these m operations, you need to answer which ball is placed in the center cup. We guarantee that n will be an odd integer, so the center cup means the -th cup.
For example, consider n = 5, m = 2 and a = [5, 1, 4, 2, 3]. If the first operation is to sort the balls in the cups numbered between 1 and 4 in ascending order, then a would become [1, 2, 4, 5, 3]. If the second operation is to sort the balls in the cups numbered between 2 and 5 in descending order, then a would become [1, 5, 4, 3, 2]. In this example, the number of the ball in the center cup after all operations is 4.
InputThe first line of input contains two integers n and m. The following line contains n integers a1, a2, ..., an. Each of the following m lines contains two integers li and ri. If li < ri, Admenoor will sort that balls in ascending order in this operation; otherwise, the balls will be sorted in descending order in this operation.
- 1 ≤ n ≤ 99 999
- n is an odd integer
- 0 ≤ m ≤ 105
- 1 ≤ ai ≤ n
- is a permutation of 1, 2, ..., n
- 1 ≤ li, ri ≤ n
Output a single line with the number of the ball in the center cup after all operations.
ExamplesInput3 2Output
1 3 2
1 3
3 1
2Input
5 2Output
5 1 4 2 3
1 4
5 2
4