-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeirdNumber.cpp
104 lines (86 loc) · 1.74 KB
/
WeirdNumber.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Weird Numbers
// https://algospot.com/judge/problem/read/WEIRD
#include <iostream>
using namespace std;
bool findSubset(int factor, int* divisors, int lastPosition);
int main()
{
int nTestCase = 0;
int no = 0;
int maxDivisors = 0;
int* divisors = NULL;
cin >> nTestCase;
while (nTestCase--)
{
cin >> no;
// Initialize array of divisors
maxDivisors = (no / 2) + 1;
divisors = new int[maxDivisors];
for (int i = 0; i < maxDivisors; i++)
{
divisors[i] = 0;
}
int position = 0;
int sumOfDivisors = 0;
bool isExceeded = false;
bool hasSubset = false;
// Get divisors
for (int i = 1; i < maxDivisors; i++)
{
if (no % i == 0)
{
divisors[position] = i;
position++;
}
}
// Add all divisors
for (int i = 0; i <= position; i++)
{
if (divisors > 0)
{
sumOfDivisors += divisors[i];
}
}
if (sumOfDivisors > no)
{
isExceeded = true;
// Define 'Factor' as substracted sum of divisors by the number
int factor = sumOfDivisors - no;
// Try making subset sums to the number
hasSubset = findSubset(factor, divisors, position);
}
else
{
isExceeded = false;
}
// Print out result
if (isExceeded && !hasSubset)
{
cout << "weird" << endl;
}
else
{
cout << "not weird" << endl;
}
}
return 0;
}
bool findSubset(int factor, int* divisors, int lastPosition)
{
bool isFactorZero = false;
// Verify element of divisors can make factor
// Substract factor from biggest divisor to smallest one
// If factor becoms zero, the number has the subset!
for (int i = lastPosition; i >= 0; i--)
{
if (factor - divisors[i] > 0)
{
factor -= divisors[i];
}
else if (factor - divisors[i] == 0)
{
isFactorZero = true;
}
}
return isFactorZero;
}