-
Notifications
You must be signed in to change notification settings - Fork 0
/
279.perfect-squares-dp.cpp
60 lines (58 loc) · 985 Bytes
/
279.perfect-squares-dp.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
/*
* @lc app=leetcode id=279 lang=cpp
*
* [279] Perfect Squares
*
* https://leetcode.com/problems/perfect-squares/description/
*
* algorithms
* Medium (40.78%)
* Total Accepted: 162.5K
* Total Submissions: 398.6K
* Testcase Example: '12'
*
* Given a positive integer n, find the least number of perfect square numbers
* (for example, 1, 4, 9, 16, ...) which sum to n.
*
* Example 1:
*
*
* Input: n = 12
* Output: 3
* Explanation: 12 = 4 + 4 + 4.
*
* Example 2:
*
*
* Input: n = 13
* Output: 2
* Explanation: 13 = 4 + 9.
*/
#include <set>
#include <queue>
#include <cmath>
#include <algorithm>
using namespace std;
class Solution
{
public:
int numSquares(int n)
{
if (n <= 0)
return 0;
static vector<int> dp({0});
while (dp.size() <= n)
{
int m = dp.size();
int d = INT_MAX;
for (int i = 1; i * i <= m; ++i)
{
d = min(d, dp[m - i * i] + 1);
if (d == 1)
break;
}
dp.push_back(d);
}
return dp[n];
}
};