#P1557B. Moamen and k-subarrays
Moamen and k-subarrays
Description
Moamen has an array of distinct integers. He wants to sort that array in non-decreasing order by doing the following operations in order exactly once:
- Split the array into exactly non-empty subarrays such that each element belongs to exactly one subarray.
- Reorder these subarrays arbitrary.
- Merge the subarrays in their new order.
A sequence is a subarray of a sequence if can be obtained from by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.
Can you tell Moamen if there is a way to sort the array in non-decreasing order using the operations written above?
The first line contains a single integer () — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers and ().
The second line contains integers (). It is guaranteed that all numbers are distinct.
It is guaranteed that the sum of over all test cases does not exceed .
For each test case, you should output a single string.
If Moamen can sort the array in non-decreasing order, output "YES" (without quotes). Otherwise, output "NO" (without quotes).
You can print each letter of "YES" and "NO" in any case (upper or lower).
Input
The first line contains a single integer () — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers and ().
The second line contains integers (). It is guaranteed that all numbers are distinct.
It is guaranteed that the sum of over all test cases does not exceed .
Output
For each test case, you should output a single string.
If Moamen can sort the array in non-decreasing order, output "YES" (without quotes). Otherwise, output "NO" (without quotes).
You can print each letter of "YES" and "NO" in any case (upper or lower).
Note
In the first test case, , and , so we can do the operations as follows:
- Split into .
- Reorder them: .
- Merge them: , so now the array is sorted.
In the second test case, there is no way to sort the array by splitting it into only subarrays.
As an example, if we split it into , we can reorder them into or . However, after merging the subarrays, it is impossible to get a sorted array.