Problem Description
You are given a 0-indexed array nums
consisting of positive integers. You can do the following operation on the array any number of times: Select an index i
such that 0 <= i < n - 1
and replace either of nums[i]
or nums[i+1]
with their gcd value. Return the minimum number of operations to make all elements of nums
equal to 1
. If it is impossible, return -1
.
Key Insights
- The operation allows replacing elements with their gcd, which can only reduce the values of the elements.
- If the gcd of the entire array is greater than
1
, it is impossible to make all elements equal to1
. - The number of operations required to convert the entire array to
1
can be calculated based on the position of the first1
encountered when reducing the elements. - The goal is to minimize the number of operations by strategically choosing indices to operate on.
Space and Time Complexity
Time Complexity: O(n) - where n is the length of the array, as we may need to iterate through the array to find the gcd and the number of operations. Space Complexity: O(1) - since we use a constant amount of space for variables.
Solution
The solution involves first checking if it's possible to reach the state where all elements become 1
. This can be done by calculating the gcd of the entire array. If the gcd is greater than 1
, we return -1
. Otherwise, we proceed to count the operations needed to convert all elements to 1
. We can track the position of the first 1
we can create and then calculate the distance from all other elements to this position to find the minimum operations.