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

[LintCode] Backpack II

时间:2015-01-12 11:09:10      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:leetcode

http://lintcode.com/en/problem/backpack-ii/

    public int backPackII(int m, int[] A, int V[]) {
        // write your code here
        
        // Brute force
        // return help(m, A, V, 0, 0, 0);
        
        int [][] max = new int [A.length + 1][m + 1];
        
        for (int[] t : max)
            Arrays.fill(t, -1);

        for (int i = 0 ; i < A.length + 1 ; i ++)
            max[i][0] = 0;

        int toReturn = 0;
        for (int i = 1 ; i < A.length + 1 ; i ++)
        {
            for (int j = 1 ; j < m + 1 ; j ++)
            {
                max[i][j] = -1;
                max[i][j] = Math.max(max[i][j], max[i - 1][j]);
                if (j - A[i - 1] >= 0 && max[i - 1][j - A[i - 1]] >= 0)
                {
                    max[i][j] = Math.max(max[i][j], max[i - 1][j - A[i - 1]] + V[i - 1]);
                }
                toReturn = Math.max(toReturn, max[i][j]);
            }
        }
        
        return toReturn;
    }


[LintCode] Backpack II

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1602321

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