A11033 | An abandoned sentiment from past
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
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 $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=200$ ) — Hitagi's broken sequence with exactly $k$ zero elements.
The third line contains $k$ space-separated integers $b_{1},b_{2},...,b_{k}$ ( $1<=b_{i}<=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.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=200$ ) — Hitagi's broken sequence with exactly $k$ zero elements.
The third line contains $k$ space-separated integers $b_{1},b_{2},...,b_{k}$ ( $1<=b_{i}<=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 "Yes" if it's possible to replace zeros in $a$ with elements in $b$ 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 $a$ is $11,0,0,14$ .
- Two of the elements are lost, and the candidates in $b$ are $5$ and $4$ .
- There are two possible resulting sequences: $11,5,4,14$ and $11,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,10$ , which is an increasing sequence and therefore invalid.
- Sequence $a$ is $11,0,0,14$ .
- Two of the elements are lost, and the candidates in $b$ are $5$ and $4$ .
- There are two possible resulting sequences: $11,5,4,14$ and $11,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,10$ , which is an increasing sequence and therefore invalid.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted