565. Array Nesting


A zero-indexed array A of length N contains all integers from 0 to N-1. Find and return the longest length of set S, where S[i] = {A[i], A[A[i]], A[A[A[i]]], ... } subjected to the rule below.

Suppose the first element in S starts with the selection of element A[i] of index = i, the next element in S should be A[A[i]], and then A[A[A[i]]]… By that analogy, we stop adding right before a duplicate element occurs in S.

Example 1:

Input: A = [5,4,0,3,1,6,2]
Output: 6
Explanation: 
A[0] = 5, A[1] = 4, A[2] = 0, A[3] = 3, A[4] = 1, A[5] = 6, A[6] = 2.

One of the longest S[K]:
S[0] = {A[0], A[5], A[6], A[2]} = {5, 6, 2, 0}

Note:

  1. N is an integer within the range [1, 20,000].
  2. The elements of A are all distinct.
  3. Each element of A is an integer within the range [0, N-1].


Solution


Approach #1 Brute Force [Time Limit Exceeded]

The simplest method is to iterate over all the indices of the given array. For every index chosen, we find the element and increment the for a new element added for the current index . Since has to act as the new index for finding the next element belonging to the set corresponding to the index , the new index is .

We continue this process of index updation and keep on incrementing the for new elements added to the set corresponding to the index . Now, since all the elements in lie in the range , the new indices generated will never lie outside the array size limits. But, we'll always reach a point where the current element becomes equal to the element with which we started the nestings in the first place. Thus, after this, the new indices generated will be just the repetitions of the previously generated ones, and thus would not lead to an increase in the size of the current set. Thus, this condition of the current number being equal to the starting number acts as the terminating condition for incrementation for a particular index.

We do the same process for every index chosen as the starting index. At the end, the maximum value of obtained gives the size of the largest set.

Complexity Analysis

  • Time complexity : . In worst case, for example- [1,2,3,4,5,0], loop body will be executed times.

  • Space complexity : . Constant space is used.


Approach #2 Using Visited Array [Accepted]

Algorithm

In the last approach, we observed that in the worst case, all the elements of the array are added to the sets corresponding to all the starting indices. But, all these sets correspond to the same set of elements only, leading to redundant calculations.

We consider a simple example and see how this problem can be resolved. From the figure below, we can see that the elements in the current nesting shown by arrows form a cycle. Thus, the same elements will be added to the current set irrespective of the first element chosen to be added to the set out of these marked elements.

Array_Nesting

Thus, when we add an element to a set corresponding to any of the indices, we mark its position as visited in a array. This is done so that whenever this index is chosen as the starting index in the future, we do not go for redundant calculations, since we've already considered the elements linked with this index, which will be added to a new(duplicate) set.

By doing so, we ensure that the duplicate sets aren't considered again and again.

Further, we can also observe that no two elements at indices and will lead to a jump to the same index , since it would require , which isn't possible since all the elements are distinct. Also, because of the same reasoning, no element outside any cycle could lead to an element inside the cycle. Because of this, the use of array goes correctly.

Complexity Analysis

  • Time complexity : . Every element of the array will be considered atmost once.

  • Space complexity : . array of size is used.


Approach #3 Without Using Extra Space [Accepted]

Algorithm

In the last approach, the array is used just to keep a track of the elements of the array which have already been visited. Instead of making use of a separate array to keep track of the same, we can mark the visited elements in the original array itself. Since, the range of the elements can only be between 1 to 20,000, we can put a very large integer value at the position which has been visited. The rest process of traversals remains the same as in the last approach.

Complexity Analysis

  • Time complexity : . Every element of the array will be considered atmost once.

  • Space complexity : . Constant Space is used.


Analysis written by: @vinod23