-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprob23.cpp
66 lines (54 loc) · 1.21 KB
/
prob23.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
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <numeric>
#include <list>
#include <set>
#include <cmath>
using namespace std;
const int NUM_MAX = 28123;
// find proper divisors and sum -- simple brute force method
bool IsAbundant(int num)
{
if (num < 2) return false;
int num_sqrt = static_cast<int>(sqrt(static_cast<double>(num)));
set<int> unique_factors;
int j;
for (int i = 2; i <= num_sqrt; ++i) {
if (!(num % i)) {
unique_factors.insert(i);
unique_factors.insert(num / i);
}
}
int sum = accumulate(unique_factors.begin(), unique_factors.end(), 1);
return (sum > num);
}
bool SumOfAbundants(int num, vector<int> &abundants)
{
int sum, size = abundants.size();
for (int i = 0; i < size; ++i) {
for (int j = 0; j < size; ++j) {
sum = abundants[i] + abundants[j];
if (sum == num) return true;
if (sum > num) break;
}
}
return false;
}
int main()
{
// Capture all the abundants in the range
vector<int> abundants;
for (int i = 1; i <= NUM_MAX; ++i) {
if (IsAbundant(i)) {
abundants.push_back(i);
}
}
int sum = 0;
for (int i = 1; i <= NUM_MAX; ++i) {
if (!SumOfAbundants(i, abundants)) sum += i;
}
cout << sum << endl;
return 0;
}