您的位置:首页 > Web前端

279. Perfect Squares

2016-03-21 11:10 393 查看
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
.

Credits:

Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

Subscribe to see which companies asked this question
背包

public class Solution {
public int numSquares(int n) {
int [] a = new int [n+1];
int i = 1;
while(i*i<=n){
a[i*i]=1;
i++;
}
for(int b = 2;b<=n;b++){
i=1;
if(a[b]==0){a[b]=a[b-1]+1;}
while(i*i<b){
int x= 1+a[b-i*i];
if(x<a[b])a[b]=x;
i++;
}
}
return a
;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: