博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最优矩阵连乘
阅读量:5314 次
发布时间:2019-06-14

本文共 915 字,大约阅读时间需要 3 分钟。

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

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

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

#include 
#include
#include
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

你可能感兴趣的文章
virtualenv模块使用
查看>>
SimMechanics/Second Generation倒立摆模型建立及初步仿真学习
查看>>
Spring Boot中如何干掉if else
查看>>
UrlEncode
查看>>
hadoop 点点滴滴(三)
查看>>
Unity3D脚本的生命周期(执行顺序)
查看>>
selenium+python笔记3
查看>>
python 练习 20
查看>>
Python——逻辑运算(or,and)
查看>>
领域驱动设计在马蜂窝优惠中心重构中的实践
查看>>
WCF发布到IIS7问题的解决方案
查看>>
MaintainableCSS 《可维护性 CSS》 --- 模板篇
查看>>
57 Insert Interval
查看>>
matlab练习程序(PCA<SVD>)
查看>>
Linux信号实践(3) --信号内核表示
查看>>
ExtJs Grid分页时序号自增的实现,以及查询以后的序号的处理
查看>>
有关转换问题
查看>>
深入浅出Google Android这本书怎么样
查看>>
mongo学习笔记(二):聚合,游标
查看>>
复选框checked 选中后不显示打钩
查看>>