Skip to content

Commit a8a9c28

Browse files
authored
DP
1 parent 9add554 commit a8a9c28

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Perfect Squares

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class Solution {
2+
public:
3+
int numSquares(int n)
4+
{
5+
int t[n+1];
6+
t[0] = 0;
7+
8+
for(int i=1;i<=n;i++)
9+
{
10+
t[i] = i;
11+
12+
for(int j=1;j*j<=i;j++)
13+
{
14+
int q=j*j;
15+
t[i] = min(t[i],1+t[i-q]);
16+
}
17+
}
18+
return t[n];
19+
}
20+
};

0 commit comments

Comments
 (0)