You are given an integer array nums of length n, where nums is a of the integers from 0 to n - 1.
You may perform only the following operations:
Return an integer denoting the minimum number of operations required to sort the array in increasing order. If it is not possible to sort the array using only the given operations, return -1.
Example 1:
Input: nums = [0,2,1]
Output: 2
Explanation:
[2, 1, 0][0, 1, 2]The array becomes sorted in 2 operations, which is minimal
Example 2:
Input: nums = [1,0,2]
Output: 2
Explanation:
[2, 0, 1][0, 1, 2]The array becomes sorted in 2 operations, which is minimal.
Example 3:
Input: nums = [2,0,1,3]
Output: -1
Explanation:
It is impossible to reach [2, 0, 1, 3]. Thus, the answer is -1.
Constraints:
1 <= n == nums.length <= 1050 <= nums[i] <= n - 1nums is a permutation of integers from 0 to n - 1.