LeetCode 279 完全平方数

Posted Starzkg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 279 完全平方数相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/perfect-squares/

解决方案

JAVA 版本

class Solution {
    public int numSquares(int n) {
        int[] b = new int[10000];
        b[0]=0;
        for(int i=1;i<=n;i++){
            b[i]= b[i-1]+1;
            for(int j=2;j*j<=i;j++){
                b[i]=Math.min(b[i],b[i-j*j]+1);
               
            }
        }
        return b[n];
    }
}

参考文章

以上是关于LeetCode 279 完全平方数的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 279. Perfect Squares 完全平方数(中等)

Leetcode 279.完全平方数

[Leetcode]279.完全平方数

LeetCode 279. 完全平方数

图解leetcode279 —— 完全平方数

leetcode 279. 完全平方数----完全背包的套路