码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode "Perfect Squares"

时间:2015-09-12 09:33:31      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

An intuitive DP.

class Solution {
public:
    int numSquares(int n) {
        vector<int> dp(n + 1, INT_MAX);
        dp[0] = 0;
        
        for(int i = 0; i <= n; i ++)
            for(int j = 1; j * j <= n - i; j ++)
                dp[i + j * j] = min(dp[i + j * j], dp[i] + 1);
        
        return dp[n];
    }
};

LeetCode "Perfect Squares"

标签:

原文地址:http://www.cnblogs.com/tonix/p/4802536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!