3.7 图像压缩(动态规划)
详细请看代码注释、代码在这里插入代码片#include <iostream>#include <algorithm>using namespace std;int n, a[1024], s[1024], l[1024], b[1024];// s[i] 代表{p0, p1, ..., pi} 的最小压缩存储位数 // l[i] 代表第 i 段的像素点的个数 ...