-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLargest Divisible Subset
42 lines (37 loc) · 1008 Bytes
/
Largest Divisible Subset
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
class Solution {
public:
vector<int> largestDivisibleSubset(vector<int>& nums)
{
vector<int> res;
int n = nums.size();
if(n==0)
return res;
sort(nums.begin(), nums.end());
vector<int> div_cnt(n,1);
vector<int> prev(n,-1);
int max_idx = 0;
for(int i=1;i<n;i++)
{
for(int j=0;j<i;j++)
{
if(nums[i]%nums[j] == 0)
{
if(div_cnt[i] < div_cnt[j]+1)
{
div_cnt[i] = div_cnt[j]+1;
prev[i] = j;
}
}
}
if(div_cnt[max_idx] < div_cnt[i])
max_idx = i;
}
while(max_idx >= 0)
{
res.push_back(nums[max_idx]);
max_idx = prev[max_idx];
}
reverse(res.begin(), res.end());
return res;
}
};