最优矩阵连乘

由于我不会矩阵,所以这道DP我是根据方程直接写的。

f(i,j) = min(f(i,k) + f(k + 1, j) + a[i - 1] * a[k] * a[j])

在实现技巧上应用了记忆化搜索。

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

const int maxn = 105, inf = 1e9;

int n; 

int a[maxn], vis[maxn][maxn], c[maxn][maxn];

int dp(int x, int y)
{
    if (vis[x][y]) return c[x][y];
    vis[x][y] = 1;
    int& ans = c[x][y];//这是之前讲过的套路
    if (x == y) return ans = 0;
//    ans = dp(x + 1, y)  +a[x - 1] * a[x] * a[y];
    ans = inf;
    for (int i = x; i < y; i++) 
    {
        int t1 = dp(x, i);
        int t2 = dp(i + 1, y);
        ans = min(ans, t1 + t2 + a[x - 1] * a[i] * a[y]);
    } 
    return ans;
}

int main()
{
//    freopen("最优矩阵连乘.in","r",stdin);
    scanf("%d", &n);
    for (int i = 0; i <= n; i++)
        scanf("%d", &a[i]);
    memset(vis, 0, sizeof vis);
    printf("%d", dp(1, n));
    return 0;
}

 

转载于:https://www.cnblogs.com/yohanlong/p/7722123.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值