您的位置:首页 > Web前端

[Leetcode刷题]Perfect Squares

2016-06-25 08:42 190 查看
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
.

Thoughts

dp[x + y^2] = min( dp[x] + 1 , dp[x + y^2])

Solutions

<span style="font-size:14px;">public class Solution {
public int numSquares(int n) {
int[] dp = new int[n+1];
Arrays.fill(dp, Integer.MAX_VALUE);
for(int i = 1; i*i <= n; i++){
dp[i*i] = 1;
}
for(int x = 1; x <= n; x++){
for(int y = 1; x + y *y <= n; y++){
dp[x + y * y] = Math.min(dp[x + y * y], dp[x] + 1);
}
}
return dp
;
}
}</span>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode