Calculate Maximum Value II -LintCode

204 篇文章 0 订阅

Given a string of numbers, write a function to find the maximum value from the string, you can add a + or * sign between any two numbers,It’s different with Calculate Maximum Value, You can insert parentheses anywhere.

样例
Given str = 01231, return 12
(0 + 1 + 2) * (3 + 1) = 12 we get the maximum value 12

Given str = 891, return 80
As 8 * (9 + 1) = 80, so 80 is maximum.

思路:
构建数组res[][],res[i][j]表示从str[i]到str[j]的字符串,可以取得的最大值。
在不同步长的情况下,计算不同位置的值:对于01231
如先计算[0,1],[1,2],[2,3]… 再计算[0,1,2],[1,2,3]…
递归求解在位置为i,步长为path的情况下,由字符串可以取得的最大值,并将其赋值给res[i][i+path-1]。

#ifndef C741_H
#define C741_H
#include<iostream>
#include<string>
#include<vector>
using namespace std;
class Solution {
public:
    /**
    * @param str: a string of numbers
    * @return: the maximum value
    */
    int maxValue(string &str) {
        // write your code here
        if (str.empty())
            return 0;
        int len = str.size();
        vector<vector<int>> res(len, vector<int>(len, INT_MIN));//res[i][j]存放从str[i]到str[j]的最大值
        for (int i = 0; i<len; ++i)//初始化res
            res[i][i] = str[i] - '0';
        //在不同步长不同位置的情况下计算res的值
        for (int path = 2; path <= len; ++path)
        {
            for (int i = 0; i + path <= len;++i)
                res[i][i + path - 1] = ComputeMax(i, path, res);
        }
        return res[0][len - 1];
    }
    //递归计算位置i,步长为path的情况下取得的最大值
    int ComputeMax(int i,int path,vector<vector<int>> vec) {
        int res = INT_MIN;
        if (vec[i][i + path - 1] != INT_MIN)
            return vec[i][i + path - 1];
        for (int k = 1; k < path; ++k) {
                int left = ComputeMax(i, k, vec);
                int right = ComputeMax(i + k, path - k, vec);
                res = maxVal(maxVal(left + right, left*right),res);
            }
        return res;
    }
    int maxVal(int a, int b)
    {
        return a > b ? a : b;
    }
};
#endif
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值