Mirko was bored, so he took a piece of paper and wrote down a sequence
Each description has one of the following formats:
1 x y v
- the largest number in positions between
2 x y v
- the smallest number in positions between
Then Slavko came, saw, and stole the first paper. Mirko is desperate and has asked you to find some sequence matching the descriptions, not necessarily equal to the original sequence.
Input Specification
The first line of input contains two positive integers,
Each of the following
Output Specification
The first and only line of output must contain a sequence of -1
if no such sequence exists.
Sample Input 1
3 2
1 1 1 1
2 2 2 2
Sample Output 1
1 2 3
Sample Input 2
4 2
1 1 1 1
2 3 4 1
Sample Output 2
-1
Sample Input 3
5 2
1 2 3 3
2 4 5 4
Sample Output 3
1 2 3 4 5
Comments