Problem statement:

A zero-indexed array A consisting of N different integers is given. The array contains all integers in the range [0, N - 1].

Sets S[K] for 0 <= K < N are defined as follows:

S[K] = { A[K], A[A[K]], A[A[A[K]]], ... }.

Sets S[K] are finite for each K and should NOT contain duplicates.

Write a function that given an array A consisting of N integers, return the size of the largest set S[K] for this array.

Example 1:

Input: A = [5,4,0,3,1,6,2]
Output: 4
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 array A is an integer within the range [0, N-1].

Solution:

This is a DFS solution. I solved it by employing the DFS template with a returned length of S[k].

For each S[k], it forms a circle. It means any element in this circle returns the same length.

For the purpose of pruning, we set a visited array to denote whether current element has been visited before.

Time complexity is O(n).

Space complexity is O(n).

class Solution {
public:
int arrayNesting(vector<int>& nums) {
int largest = ;
vector<int> visited(nums.size(), );
for(int i = ; i < nums.size(); i++){
largest = max(largest, largest_nesting(nums, visited, nums[i], ));
}
return largest;
}
int largest_nesting(vector<int>& nums, vector<int>& visited, int idx, int size){
if(visited[nums[idx]] == ){
visited[nums[idx]] = ;
return largest_nesting(nums, visited, nums[idx], size + );
} else {
return size;
}
}
};

最新文章

  1. html之file标签 --- 图片上传前预览 -- FileReader
  2. win8访问win7中的共享文件夹 映射网络驱动器
  3. Linux之netstat命令详解
  4. 教你如何用PS制作多款按钮UI设计教程
  5. 【转】如何使用Unity创造动态的2D水体效果
  6. 《Two Days DIV + CSS》读书笔记——CSS控制页面方式
  7. Kickstart Round D 2017 problem A sightseeing 一道DP
  8. codeforces 343D 树剖后odt维护
  9. mysql-python安装时EnvironmentError: mysql_config not found
  10. LeetCode--038--报数(java)
  11. Nginx SSL+tomcat集群,request.getScheme() 取到https正确的协议
  12. 20155310 《网络对抗》Exp 8 Web基础
  13. logistic回归具体解释(二):损失函数(cost function)具体解释
  14. Redis集群学习笔记
  15. centos7 jenkins 安装
  16. BZOJ3160:万径人踪灭(FFT,Manacher)
  17. 笔试题之java基础
  18. String对象的match方法
  19. 算法笔记(c++)--求一个数的所有质数因子
  20. Corosync+pacemaker实现集群的高可用

热门文章

  1. VMwareworkstation 12安装
  2. 用NPOI从DataTable到Excel,向Excel模板填充数据
  3. AJPFX关于StringBuffer,StringBuilder类 总结(一)
  4. LeetCode 69 题
  5. html5表单新增的元素与属性
  6. 【转】java编程思想第20章的注解例子用到的com.sun.mirror的jar包
  7. Android Activity生命周期的几个问题
  8. sql 删除重复数据
  9. 《3+1团队》【Alpha】Scrum meeting 1
  10. 通过java反射机制,获取对象的属性和值(包括所有继承的父类)