A13353 | WeirdSort
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a$ of length $n$ .
You are also given a set of distinct positions $p_1, p_2, \dots, p_m$ , where $1 \le p_i < n$ . The position $p_i$ means that you can swap elements $a[p_i]$ and $a[p_i + 1]$ . You can apply this operation any number of times for each of the given positions.
Your task is to determine if it is possible to sort the initial array in non-decreasing order ( $a_1 \le a_2 \le \dots \le a_n$ ) using only allowed swaps.
For example, if $a = [3, 2, 1]$ and $p = [1, 2]$ , then we can first swap elements $a[2]$ and $a[3]$ (because position $2$ is contained in the given set $p$ ). We get the array $a = [3, 1, 2]$ . Then we swap $a[1]$ and $a[2]$ (position $1$ is also contained in $p$ ). We get the array $a = [1, 3, 2]$ . Finally, we swap $a[2]$ and $a[3]$ again and get the array $a = [1, 2, 3]$ , sorted in non-decreasing order.
You can see that if $a = [4, 1, 2, 3]$ and $p = [3, 2]$ then you cannot sort the array.
You have to answer $t$ independent test cases.
You are also given a set of distinct positions $p_1, p_2, \dots, p_m$ , where $1 \le p_i < n$ . The position $p_i$ means that you can swap elements $a[p_i]$ and $a[p_i + 1]$ . You can apply this operation any number of times for each of the given positions.
Your task is to determine if it is possible to sort the initial array in non-decreasing order ( $a_1 \le a_2 \le \dots \le a_n$ ) using only allowed swaps.
For example, if $a = [3, 2, 1]$ and $p = [1, 2]$ , then we can first swap elements $a[2]$ and $a[3]$ (because position $2$ is contained in the given set $p$ ). We get the array $a = [3, 1, 2]$ . Then we swap $a[1]$ and $a[2]$ (position $1$ is also contained in $p$ ). We get the array $a = [1, 3, 2]$ . Finally, we swap $a[2]$ and $a[3]$ again and get the array $a = [1, 2, 3]$ , sorted in non-decreasing order.
You can see that if $a = [4, 1, 2, 3]$ and $p = [3, 2]$ then you cannot sort the array.
You have to answer $t$ independent test cases.
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 100$ ) — the number of test cases.
Then $t$ test cases follow. The first line of each test case contains two integers $n$ and $m$ ( $1 \le m < n \le 100$ ) — the number of elements in $a$ and the number of elements in $p$ . The second line of the test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 100$ ). The third line of the test case contains $m$ integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i < n$ , all $p_i$ are distinct) — the set of positions described in the problem statement.
Then $t$ test cases follow. The first line of each test case contains two integers $n$ and $m$ ( $1 \le m < n \le 100$ ) — the number of elements in $a$ and the number of elements in $p$ . The second line of the test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 100$ ). The third line of the test case contains $m$ integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i < n$ , all $p_i$ are distinct) — the set of positions described in the problem statement.
输出格式
For each test case, print the answer — "YES" (without quotes) if you can sort the initial array in non-decreasing order ( $a_1 \le a_2 \le \dots \le a_n$ ) using only allowed swaps. Otherwise, print "NO".
输入输出样例
输入 #1
6 3 2 3 2 1 1 2 4 2 4 1 2 3 3 2 5 1 1 2 3 4 5 1 4 2 2 1 4 3 1 3 4 2 4 3 2 1 1 3 5 2 2 1 2 3 3 1 4
输出 #1
YES NO YES YES NO YES
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted