动态规划---线性DP,区间DP

1.线性DP

1.1例题:数字三角形

动态规划---线性DP,区间DP_第1张图片
图解:
动态规划---线性DP,区间DP_第2张图片
代码:

#include 
#include 

using namespace std;

const int N = 

你可能感兴趣的:(算法基础,动态规划,算法)