CF420D.Cup Trick

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The employees of the F company have lots of ways to entertain themselves. Today they invited a famous magician who shows a trick with plastic cups and a marble.

The point is to trick the spectator's attention. Initially, the spectator stands in front of a line of nn plastic cups. Then the magician places a small marble under one cup and shuffles the cups. Then the spectator should guess which cup hides the marble.

But the head coder of the F company isn't easy to trick. When he saw the performance, he noticed several important facts:

  • each cup contains a mark — a number from 11 to nn ; all marks on the cups are distinct;
  • the magician shuffles the cups in mm operations, each operation looks like that: take a cup marked xix_{i} , sitting at position yiy_{i} in the row of cups (the positions are numbered from left to right, starting from 1) and shift it to the very beginning of the cup row (on the first position).

When the head coder came home after work he wanted to re-do the trick. Unfortunately, he didn't remember the starting or the final position of the cups. He only remembered which operations the magician performed. Help the coder: given the operations in the order they were made find at least one initial permutation of the cups that can go through the described operations in the given order. Otherwise, state that such permutation doesn't exist.

输入格式

The first line contains integers nn and mm (1<=n,m<=106)(1<=n,m<=10^{6}) . Each of the next mm lines contains a couple of integers. The ii -th line contains integers xix_{i} , yiy_{i} (1<=xi,yi<=n)(1<=x_{i},y_{i}<=n) — the description of the ii -th operation of the magician. Note that the operations are given in the order in which the magician made them and the coder wants to make them in the same order.

输出格式

If the described permutation doesn't exist (the programmer remembered wrong operations), print -1. Otherwise, print nn distinct integers, each from 11 to nn : the ii -th number should represent the mark on the cup that initially is in the row in position ii .

If there are multiple correct answers, you should print the lexicographically minimum one.

输入输出样例

  • 输入#1

    2 1
    2 1
    

    输出#1

    2 1 
    
  • 输入#2

    3 2
    1 2
    1 1
    

    输出#2

    2 1 3 
    
  • 输入#3

    3 3
    1 3
    2 3
    1 3
    

    输出#3

    -1
    
首页