-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path13.largestDivisibleSubset.cpp
57 lines (46 loc) · 1.9 KB
/
13.largestDivisibleSubset.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
class Solution {
public:
vector<int> largestDivisibleSubset(vector<int>& A) {
int n = A.size();
if(n == 0)
return {};
//1. Sort A,
// so that we have to only check A[j]%A[i] and not A[i]%A[j], i < j
sort(A.begin(), A.end());
//2. Create a vector, dp,
// where dp[i] : longest subset, satisfying the required conditions and ending at index i
//initial length of any subset is 1
vector<int> dp(n, 1);
//3. Also create a vector, prev_index,
// because if longest subset ends at some index 't'
// we also want the indices of previously included elements in this subset, to form the subset
vector<int> previous_index(n, -1);
int max_ind = 0; //this keeps track of the index at which the longest subset ends
//4. logic :
// for j<i<n,
// if A[i]%A[j] = 0, then,
// we can add A[i] to subset having last element as A[j], if and only if,
// length of subset ending at A[j] after adding A[i] becomes more than length of subset of which A[i] is already a part
// in other words, if dp[i] < dp[j] + 1 => dp[i] = dp[j]+1
// also in the process we keep track of previous indices of i, and also the max_ind
for(int i=1; i<n; i++) {
for(int j=0; j<i; j++) {
if(A[i]%A[j]==0 and dp[i] < dp[j] + 1) {
dp[i] = dp[j]+1;
previous_index[i] = j;
}
}
if(dp[i] > dp[max_ind]) {
max_ind = i;
}
}
//5. Now we just use max_ind and previous_index to form the final subset
vector<int> answer;
int t = max_ind;
while(t >= 0) {
answer.push_back(A[t]);
t = previous_index[t];
}
return answer;
}
};