-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperfect_squares.cpp
56 lines (46 loc) · 1.38 KB
/
perfect_squares.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
/*
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n.
For example, given n = 12, return 3 because 12 = 4 + 4 + 4; given n = 13, return 2 because 13 = 4 + 9.
*/
class Solution {
public:
map<int,int> dp;
int get_val(int n)
{
//cout<<"getting value for:"<<n<<"\n";
map<int,int> :: iterator itr;
if(n==0)
return 0;
itr = dp.find(n);
if(itr != dp.end())
return itr->second;
else
{
int min_count = INT_MAX;
for(int i = 1;i * i<=n;i++)
{
int j = i*i;
//dp.insert(pair<int,int>(i*i,1));
int count = 1 + get_val(n - j);
if(count < min_count)
min_count = count;
if(min_count == 2)
break;
}
dp.insert(pair<int,int>(n,min_count));
return min_count;
}
return 0;
}
int numSquares(int n) {
for(int i=1;i*i<=n;i++)
{
//dp.erase(i*i);
dp.insert(pair<int,int>(i*i,1));
//dp.insert(pair<int,int>(i*i + (i-1)*(i-1),2));
//dp.insert(pair<int,int>(i*i + (i)*(i),2));
}
int ret = get_val(n);
return ret;
}
};