-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathPractical Numbers.cpp
83 lines (74 loc) · 1.97 KB
/
Practical Numbers.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
77
78
79
80
81
82
83
#include <bits/stdc++.h>
using namespace std;
// Returns true if there is a subset of set[]
// with sun equal to given sum
bool isSubsetSum(vector<int>& set, int n, int sum)
{
// The value of subset[i][j] will be true if
// there is a subset of set[0..j-1] with sum
// equal to i
bool subset[n + 1][sum + 1];
// If sum is 0, then answer is true
for (int i = 0; i <= n; i++)
subset[i][0] = true;
// If sum is not 0 and set is empty,
// then answer is false
for (int i = 1; i <= sum; i++)
subset[0][i] = false;
// Fill the subset table in bottom up manner
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= sum; j++) {
if (j < set[i - 1])
subset[i][j] = subset[i - 1][j];
if (j >= set[i - 1])
subset[i][j] = subset[i - 1][j]
|| subset[i - 1][j - set[i - 1]];
}
}
return subset[n][sum];
}
// Function to store divisors of N
// in a vector
void storeDivisors(int n, vector<int>& div)
{
// Find all divisors which divides 'num'
for (int i = 1; i <= sqrt(n); i++) {
// if 'i' is divisor of 'n'
if (n % i == 0) {
// if both divisors are same
// then store it once else store
// both divisors
if (i == (n / i))
div.push_back(i);
else {
div.push_back(i);
div.push_back(n / i);
}
}
}
}
// Returns true if num is Practical
bool isPractical(int N)
{
// vector to store all
// divisors of N
vector<int> div;
storeDivisors(N, div);
// to check all numbers from 1 to < N
for (int i = 1; i < N; i++) {
if (!isSubsetSum(div, div.size(), i))
return false;
}
return true;
}
// Driver code
int main()
{
int N ;
cin >> N;
for(int i =0 ;i < N ; i++){
if (isPractical(i))
cout << i << " ";
}
return 0;
}