CF362B.Petya and Staircases

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump over one or two stairs at a time. But some stairs are too dirty and Petya doesn't want to step on them.

Now Petya is on the first stair of the staircase, consisting of nn stairs. He also knows the numbers of the dirty stairs of this staircase. Help Petya find out if he can jump through the entire staircase and reach the last stair number nn without touching a dirty stair once.

One has to note that anyway Petya should step on the first and last stairs, so if the first or the last stair is dirty, then Petya cannot choose a path with clean steps only.

输入格式

The first line contains two integers nn and mm ( 1<=n<=1091<=n<=10^{9} , 0<=m<=30000<=m<=3000 ) — the number of stairs in the staircase and the number of dirty stairs, correspondingly. The second line contains mm different space-separated integers d1,d2,...,dmd_{1},d_{2},...,d_{m} ( 1<=di<=n1<=d_{i}<=n ) — the numbers of the dirty stairs (in an arbitrary order).

输出格式

Print "YES" if Petya can reach stair number nn , stepping only on the clean stairs. Otherwise print "NO".

输入输出样例

  • 输入#1

    10 5
    2 4 8 3 6
    

    输出#1

    NO
  • 输入#2

    10 5
    2 4 5 7 9
    

    输出#2

    YES
首页