CodeForces

来源:互联网 发布:ipad4下载软件 编辑:程序博客网 时间:2024/06/15 06:26

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 a has a length of n. Lost elements in it are denoted by zeros. Kaiki provides another sequence b, whose length k equals the number of lost elements in a (i.e. the number of zeros). Hitagi is to replace each zero in a with an element from b so that each element in b should be used exactly once. Hitagi knows, however, that, apart from 0, no integer occurs in a and b 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 a with an integer from b so that each integer from b is used exactly once, and the resulting sequence is not increasing.

Input

The first line of input contains two space-separated positive integers n (2 ≤ n ≤ 100) and k (1 ≤ k ≤ n) — the lengths of sequence a and b respectively.

The second line contains n space-separated integers a1, a2, ..., an (0 ≤ ai ≤ 200) — Hitagi's broken sequence with exactly k zero elements.

The third line contains k space-separated integers b1, b2, ..., bk (1 ≤ bi ≤ 200) — the elements to fill into Hitagi's sequence.

Input guarantees that apart from 0, no integer occurs in a and b more than once in total.

Output

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

Example
Input
4 211 0 0 145 4
Output
Yes
Input
6 12 3 0 8 9 105
Output
No
Input
4 18 94 0 489
Output
Yes
Input
7 70 0 0 0 0 0 01 2 3 4 5 6 7
Output
Yes

题目大概:

给出一个序列,里面缺了n个数,后来给出n个数,把n个数放进去,看是否组成上升序列。

思路:

n个数用dfs一个一个的放。

代码:

#include <iostream>#include <cstring>#include <cstdio>using namespace std;int a[101],b[101];int po[101];int n,m,l=0,h=0;int pan(){    int g=1;    for(int i=1;i<=n-1;i++)    {        if(a[i]<a[i+1])continue;        g=0;    }    if(g)return 1;    else return 0;}int dfs(int k){    if(h==m*m){cout<<"No"<<endl;l=1;return 0;}    if(k==m+1){    if(!pan()){cout<<"Yes"<<endl;l=1;return 0;}     else h++;    }    for(int i=1;i<=m;i++)    {      a[po[k]]=b[i];      dfs(k+1);      a[po[k]]=0;      if(l)return 0;    }}int main(){  cin>>n>>m;  int j=1;  for(int i=1;i<=n;i++)  {      cin>>a[i];      if(a[i]==0){po[j++]=i;}  }  for(int i=1;i<=m;i++)  {      cin>>b[i];  }  dfs(1);    return 0;}


原创粉丝点击