A14621 | Hemose Shopping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Hemose was shopping with his friends Samez, AhmedZ, AshrafEzz, TheSawan and O\_E in Germany. As you know, Hemose and his friends are problem solvers, so they are very clever. Therefore, they will go to all discount markets in Germany.
Hemose has an array of $n$ integers. He wants Samez to sort the array in the non-decreasing order. Since it would be a too easy problem for Samez, Hemose allows Samez to use only the following operation:
- Choose indices $i$ and $j$ such that $1 \le i, j \le n$ , and $\lvert i - j \rvert \geq x$ . Then, swap elements $a_i$ and $a_j$ .
Can you tell Samez if there's a way to sort the array in the non-decreasing order by using the operation written above some finite number of times (possibly $0$ )?
Hemose has an array of $n$ integers. He wants Samez to sort the array in the non-decreasing order. Since it would be a too easy problem for Samez, Hemose allows Samez to use only the following operation:
- Choose indices $i$ and $j$ such that $1 \le i, j \le n$ , and $\lvert i - j \rvert \geq x$ . Then, swap elements $a_i$ and $a_j$ .
Can you tell Samez if there's a way to sort the array in the non-decreasing order by using the operation written above some finite number of times (possibly $0$ )?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ $(1 \leq t \leq 10^5)$ . Description of the test cases follows.
The first line of each test case contains two integers $n$ and $x$ $(1 \leq x \leq n \leq 10^5)$ .
The second line of each test case contains $n$ integers $a_1, a_2, ..., a_n$ $(1 \leq a_i \leq 10^9)$ .
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $x$ $(1 \leq x \leq n \leq 10^5)$ .
The second line of each test case contains $n$ integers $a_1, a_2, ..., a_n$ $(1 \leq a_i \leq 10^9)$ .
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
For each test case, you should output a single string.
If Samez can sort the array in non-decreasing order using the operation written above, output "YES" (without quotes). Otherwise, output "NO" (without quotes).
You can print each letter of "YES" and "NO" in any case (upper or lower).
If Samez can sort the array in non-decreasing order using the operation written above, output "YES" (without quotes). Otherwise, output "NO" (without quotes).
You can print each letter of "YES" and "NO" in any case (upper or lower).
输入输出样例
输入 #1
4 3 3 3 2 1 4 3 1 2 3 4 5 2 5 1 2 3 4 5 4 1 2 3 4 4
输出 #1
NO YES YES YES
In the first test case, you can't do any operations.
In the second test case, the array is already sorted.
In the third test case, you can do the operations as follows:
- $[5,1,2,3,4]$ , $swap(a_1,a_3)$
- $[2,1,5,3,4]$ , $swap(a_2,a_5)$
- $[2,4,5,3,1]$ , $swap(a_2,a_4)$
- $[2,3,5,4,1]$ , $swap(a_1,a_5)$
- $[1,3,5,4,2]$ , $swap(a_2,a_5)$
- $[1,2,5,4,3]$ , $swap(a_3,a_5)$
- $[1,2,3,4,5]$
(Here $swap(a_i, a_j)$ refers to swapping elements at positions $i$ , $j$ ).
In the second test case, the array is already sorted.
In the third test case, you can do the operations as follows:
- $[5,1,2,3,4]$ , $swap(a_1,a_3)$
- $[2,1,5,3,4]$ , $swap(a_2,a_5)$
- $[2,4,5,3,1]$ , $swap(a_2,a_4)$
- $[2,3,5,4,1]$ , $swap(a_1,a_5)$
- $[1,3,5,4,2]$ , $swap(a_2,a_5)$
- $[1,2,5,4,3]$ , $swap(a_3,a_5)$
- $[1,2,3,4,5]$
(Here $swap(a_i, a_j)$ refers to swapping elements at positions $i$ , $j$ ).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted