CF1592B.Hemose Shopping
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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≤i,j≤n , and ∣i−j∣≥x . Then, swap elements ai and aj .
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≤t≤105) . Description of the test cases follows.
The first line of each test case contains two integers n and x (1≤x≤n≤105) .
The second line of each test case contains n integers a1,a2,...,an (1≤ai≤109) .
It is guaranteed that the sum of n over all test cases doesn't exceed 2⋅105 .
输出格式
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).
输入输出样例
输入#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(a1,a3)
- [2,1,5,3,4] , swap(a2,a5)
- [2,4,5,3,1] , swap(a2,a4)
- [2,3,5,4,1] , swap(a1,a5)
- [1,3,5,4,2] , swap(a2,a5)
- [1,2,5,4,3] , swap(a3,a5)
- [1,2,3,4,5]
(Here swap(ai,aj) refers to swapping elements at positions i , j ).