CF814A.An abandoned sentiment from past

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed.

To get rid of the oddity and recover her weight, a special integer sequence is needed. Hitagi's sequence has been broken for a long time, but now Kaiki provides an opportunity.

Hitagi's sequence aa has a length of nn . Lost elements in it are denoted by zeros. Kaiki provides another sequence bb , whose length kk equals the number of lost elements in aa (i.e. the number of zeros). Hitagi is to replace each zero in aa with an element from bb so that each element in bb should be used exactly once. Hitagi knows, however, that, apart from 00 , no integer occurs in aa and bb more than once in total.

If the resulting sequence is not an increasing sequence, then it has the power to recover Hitagi from the oddity. You are to determine whether this is possible, or Kaiki's sequence is just another fake. In other words, you should detect whether it is possible to replace each zero in aa with an integer from bb so that each integer from bb is used exactly once, and the resulting sequence is not increasing.

输入格式

The first line of input contains two space-separated positive integers nn ( 2<=n<=1002<=n<=100 ) and kk ( 1<=k<=n1<=k<=n ) — the lengths of sequence aa and bb respectively.

The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 0<=ai<=2000<=a_{i}<=200 ) — Hitagi's broken sequence with exactly kk zero elements.

The third line contains kk space-separated integers b1,b2,...,bkb_{1},b_{2},...,b_{k} ( 1<=bi<=2001<=b_{i}<=200 ) — the elements to fill into Hitagi's sequence.

Input guarantees that apart from 00 , no integer occurs in aa and bb more than once in total.

输出格式

Output "Yes" if it's possible to replace zeros in aa with elements in bb and make the resulting sequence not increasing, and "No" otherwise.

输入输出样例

  • 输入#1

    4 2
    11 0 0 14
    5 4
    

    输出#1

    Yes
    
  • 输入#2

    6 1
    2 3 0 8 9 10
    5
    

    输出#2

    No
    
  • 输入#3

    4 1
    8 94 0 4
    89
    

    输出#3

    Yes
    
  • 输入#4

    7 7
    0 0 0 0 0 0 0
    1 2 3 4 5 6 7
    

    输出#4

    Yes
    

说明/提示

In the first sample:

  • Sequence aa is 11,0,0,1411,0,0,14 .
  • Two of the elements are lost, and the candidates in bb are 55 and 44 .
  • There are two possible resulting sequences: 11,5,4,1411,5,4,14 and 11,4,5,1411,4,5,14 , both of which fulfill the requirements. Thus the answer is "Yes".

In the second sample, the only possible resulting sequence is 2,3,5,8,9,102,3,5,8,9,10 , which is an increasing sequence and therefore invalid.

首页