-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubsetGoogle.cpp
63 lines (52 loc) · 1.21 KB
/
SubsetGoogle.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
#include<vector>
#include<iostream>
using namespace std;
class Solution {
private:
bool solved;
int target;
vector<int>v;
public:
Solution(int target) {
solved = false;
this->target = target;
v = vector<int>(target + 1, -1);
v[0] = 0;
}
vector<int> stream(int x) {
vector<int>ans;
if (solved || x > target) return ans;
if (v[target - x] != -1) {
solved = true;
ans.push_back(x);
int res = target - x;
while (res > 0) {
ans.push_back(v[res]);
res -= v[res];
}
reverse(ans.begin(), ans.end());
return ans;
}
for (int i = target; i >= x; i--)
{
if (v[i] == -1 && v[i - x] != -1)
{
v[i] = x;
}
}
return ans;//empty array
}
};
int mainSubsetGoogle(void) {
Solution* s = new Solution(20);
vector<int> arr = { 2, 7, 8, 1, 10 };
for (int x : arr) {
auto ans = s->stream(x);
if (!ans.empty()) {
for (auto y : ans)cout << y << ' ';
cout << endl;
break;
}
}
return 0;
}