博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
0002:动态规划
阅读量:5332 次
发布时间:2019-06-14

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

动态规划的数塔问题

1  #include
2 #include
3 using namespace std; 4 const int maxn = 1000; 5 int f[maxn][maxn],dp[maxn][maxn]; 6 int main(){ 7 int n; 8 scanf("%d",&n); 9 for(int i=1;i<=n;i++){10 for(int j=1;j<=i;j++){11 scanf("%d",&f[i][j]);12 }13 }14 for(int j=1;j<=n;j++){15 dp[n][j]=f[n][j];16 }17 for(int i=n-1;i>=1;i--){18 for(int j=1;j<=i;j++){19 dp[i][j]=max(dp[i+1][j],dp[i+1][j+1])+f[i][j];20 }21 } 22 printf("%d\n",dp[1][1]);23 return 0;24 }

 

最大连续子序列和

1  #include
2 #include
3 using namespace std; 4 const int maxn=10010; 5 int A[maxn],dp[maxn]; 6 int main(){ 7 int n; 8 scanf("%d",&n); 9 for(int i=0;i
dp[k]){19 k=i;20 }21 }22 printf("%d\n",dp[k]);23 return 0;24 }

 最长不下降子序列(LIS)

 

转载于:https://www.cnblogs.com/mist2019/p/10365508.html

你可能感兴趣的文章
python中numpy.r_和numpy.c_
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
freebsd 实现 tab 命令 补全 命令 提示
查看>>
struts1和struts2的区别
查看>>
函数之匿名函数
查看>>
shell习题第16题:查用户
查看>>
Redis常用命令
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
centos系统python2.7更新到3.5
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>