-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path368_LargestDivisibleSubset.cpp
76 lines (70 loc) · 1.34 KB
/
368_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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include<string>
#include <set>
#include<vector>
#include<iostream>
#include<map>
#include<stack>
#include <unordered_map>
#include <algorithm> // std::min_element, std::max_element
using namespace std;
vector<int> largestDivisibleSubset(vector<int>& nums) {
unordered_map<int, int> mp;
vector<int> result;
for (int i = 0; i < nums.size(); i++)
{
for (int j = i + 1; j < nums.size(); j++)
{
if (nums[i] % nums[j] == 0 || nums[j] % nums[i] == 0)
{
if (mp.size() == 0)
{
if (mp.find(nums[i]) == mp.end())
{
mp[nums[i]] = i;
}
if (mp.find(nums[j]) == mp.end())
{
mp[nums[j]] = j;
}
}
else
{
bool bValidate = true;
for (auto item : mp)
{
if (mp.find(nums[j]) == mp.end() && (item.first % nums[j] == 0 || nums[j] % item.first == 0))
bValidate = true;
else
{
bValidate = false;
break;
}
}
if (bValidate)
{
mp[nums[j]] = j;
}
}
}
}
if (mp.size() > result.size())
{
//push the elements in mp
result.clear();
for (auto item : mp)
{
result.push_back(item.first);
}
mp.clear();
}
}
return result;
}
int main368()
{
//int count = climbStairs(5);
int N = 2;
vector<int> a{ 2,3,8,9,27 };
vector<int> lnResult = largestDivisibleSubset(a);
return 0;
}