当前位置:   article > 正文

MIT:算法导论——15.动态规划_求(x!-1)*y-n的最小值

求(x!-1)*y-n的最小值

【设计一个动态规划算法的四个步骤】

1、刻画一个最优解的特征。 (最优子结构?!)

2、递归地定义最优解的值。

3、计算最优解的值,通常采用自底向上方法。

4、利用计算出的信息构造一个最优解。


适合动态规划方法求解的最优化问题需要具备的两个性质:

【最优子结构(optimal substructure)】

问题的最优解由相关子问题的最优解组合而成,而这些子问题可以独立求解。(动态规划具体实现之处)

【重叠子问题(overlapping subproblem)】

如果递归算法反复求解相同的子问题,我们就称最优化问题具有重叠子问题性质。(动态规划实现优化之处)

【动态规划两种等价实现方法】

1、 带备忘的自顶向下法(top-down with memoizatioin)

2、自底向上方法(bottom-up method)


问题一:钢条切割

背景:长度为i的钢条价格为p[i],长为n的钢条的怎么切割有最大收益。

长度i:   1 2 3 4 5 6 7 8 9 10

价格p[i]: 1 5 8 9 10 17 17 20 24 30

方案:

收益r[i] = max(p[j],r[i-j]),j:[1,i]**********************************************(2)


  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <iostream>
  4. #include <vector>
  5. #define MAXINT 0x7FFFFFFF
  6. #define MININT -(signed int)MAXINT - 1
  7. using namespace std;
  8. int bottom_up_cut_rod( int *p, int n, int *s );
  9. int bp_cut_rod(vector<int> &vPrices, vector<int> &vCuts);
  10. void output_cut_rod_solution(vector<int> &vPrices, vector<int> &vCuts);
  11. int main( void )
  12. {
  13. cout << "********最大值/最小值******************" << endl;
  14. cout << MAXINT << endl;
  15. cout << MININT << endl;
  16. cout << "********动态规划:钢条切割最大收益*****" << endl;
  17. int p[] = { 0, 1, 5, 8, 9, 10, 17, 17, 20, 24, 30 };
  18. int n = sizeof( p ) / sizeof( int ) - 1;
  19. //cout << sizeof( p ) / sizeof( int ) << endl; // 输出11,sizeof(p),p为数组,为总大小44
  20. vector<int> vPrices(p, p + n + 1);
  21. vector<int> vCuts(n + 1);
  22. output_cut_rod_solution(vPrices, vCuts);
  23. cout << "最优解总数据:" << endl;
  24. for( int i = 0; i <= n; ++i )
  25. cout << vCuts[i] << " ";
  26. cout << endl;
  27. return 0;
  28. }
  29. /*
  30. * 动态规划算法——自底向上计算:钢条切割,求切为多长为最优解。
  31. * i = j + (i -j),即将长度为i的钢条分割为长度为j(整段)、长度为i - j(再分割段)的两段,
  32. * j = [1,i],即只且长为1的,至整段出售;而i - j在之前(bottom_up)已经计算。
  33. * rod[rɒd] n. 棒 —— cut rod
  34. *
  35. * 输出参数:int *s 输出参数,存储最优解
  36. * 返回值 :int 长度为n的棒,最大收益
  37. *
  38. */
  39. int bp_cut_rod(vector<int> &vPrices, vector<int> &vCuts)
  40. {
  41. vector<int>::size_type n = vPrices.size() - 1;
  42. vector<int> vRods(n + 1); // 长为i的最优价值
  43. // vRods.reserve(n + 1); // 此时如果直接访问,会报错;因为只是预留空间,并未初始化。
  44. vRods[0] = 0;
  45. for (vector<int>::size_type i = 1; i <= n; i += 1){ // 求长为i的最优收益
  46. int iSum = 0;
  47. int iVal = 0;
  48. for (vector<int>::size_type j = 1; j <= i; j += 1){
  49. iSum = vPrices[j] + vRods[i - j];
  50. if (iSum > iVal){
  51. iVal = iSum;
  52. vCuts[i] = j; // 记录最优解
  53. }
  54. }
  55. vRods[i] = iVal;
  56. }
  57. return vRods[n];
  58. }
  59. void output_cut_rod_solution(vector<int> &vPrices, vector<int> &vCuts)
  60. {
  61. cout << "最优价值:" << bp_cut_rod(vPrices, vCuts) << endl;
  62. cout << "最优解:" << endl;
  63. int n = vCuts.size() - 1;
  64. while (n > 0){
  65. cout << vCuts[n] << endl;
  66. n -= vCuts[n];
  67. }
  68. }


int bp_cut_rod(vector<int> &vPrices, vector<int> &vCuts) *******************************(3)

算法复杂度分析:

其内层for循环的迭代次数构成一个等差数列,所以运行时间复杂度为O(n^2)。


void output_cut_rod_solution(vector<int> &vPrices, vector<int> &vCuts) *******************(4)





==============================================

LCS最长公共子序列:不连续子序列和连续子序列

【最长公共子序列问题】longest-common-subsequence problem
给定两个序列X = <x1, x2, ..., xm>和Y = <y1, y2, ..., yn>,求X和Y的最长公共子序列。
【步骤1】刻画最长公共子序列的特征
定理15.1(LCS的最优子结构) 令X = <x1, x2, ..., xm>和Y = <y1, y2, ..., yn>为两个序列,
Z = <z1, z2, ..., zk>为X和Y的任意LCS。有:
(1)如果xm = yn,则zk = xm = yn, 且Zk-1是Xm-1和Yn-1的一个LCS。
(2)如果xm != yn,那么zk != xm意味着Z是Xm-1和Y的一个LCS。
(3)如果xm != yn,那么zk != yn意味着Z是X和Yn-1的一个LCS。
【步骤2】一个递归解
【LCS问题的重叠子问题性质】为求X和Y的一个LCS,我们可能需要求Xm-1和Y的一个LCS以及X和Yn-1的一个LCS,
但是这个子问题都包含求解Xm-1和Yn-1的LCS的子问题。
设计递归算法,首先要设计最优解的递归式:
c[i,j] = { 0 if i == 0 || j == 0
  { c[i-1, j-1] + 1if i,j > 0 && Xi == Yj
  { max(c[i-1, c[j-1])if i,j > 0 && Xi != Yj
【步骤3】计算LCS的长度
(1)采用自底向上方法
(2)c[i, j]保存在表c[0...m, 0...n]中,并按行主次序。
(3)表b[0...m, 0...n]保存c[i,j]所选择的子问题,以构造最优解
【步骤4】构造LCS
从b[m, n]开始,向上追踪:当箭头(→)指向左上角时,xi == yj。


【当要求必须连续时】
c[i,j] = { 0 if i == 0 || j == 0
  { c[i-1, j-1] + 1if i,j > 0 && Xi == Yj
  { 0 if i,j > 0 && Xi != Yj
(1)由于要求连续则Xi和Yj一定为结尾的字符,当i,j > 0 && Xi != Yj时,c[i, j] = 0。
(2)当if i,j > 0 && Xi == Yj,需要记录X的low,high,max.以及tmpL,tmpH,tmpMax = 0。


不要求连续的代码实现:

  1. #ifndef ALGORITHM_H
  2. #define ALGORITHM_H
  3. #include <stdio.h>
  4. #include <iostream>
  5. #include <fstream>
  6. #include <sstream>
  7. #include <bitset>
  8. #include <string>
  9. #include <vector>
  10. #include <list>
  11. #include <queue>
  12. #include <stack>
  13. #include <utility>
  14. #include <map>
  15. #include <set>
  16. #include <numeric>
  17. #include <algorithm>
  18. #endif

  1. #include "algorithm.h"
  2. #define LEFT 1
  3. #define LU 0
  4. #define UP 2
  5. using namespace std;
  6. int lcs_length(string &sX, string &sY);
  7. int main(void)
  8. {
  9. string sX("abcbdab");
  10. string sY("bdcaba");
  11. cout << lcs_length(sX, sY) << endl;
  12. return 0;
  13. }
  14. int lcs_length(string &sX, string &sY)
  15. {
  16. int m = sX.size();
  17. int n = sY.size();
  18. int **c = new int*[m + 1];
  19. int **b = new int*[m + 1];
  20. for (int i = 0; i <= m; i += 1){
  21. c[i] = new int[n + 1];
  22. b[i] = new int[n + 1];
  23. }
  24. for (int i = 0; i <= m; i += 1){
  25. for (int j = 0; j <= n; j += 1){
  26. if (i == 0 || j == 0){
  27. c[i][j] = 0;
  28. b[i][j] = 3;
  29. }else if (sX[i - 1] == sY[j - 1]){
  30. c[i][j] = c[i - 1][j - 1] + 1;
  31. b[i][j] = LU;
  32. }else{
  33. if (c[i - 1][j] > c[i][j - 1]){
  34. c[i][j] = c[i - 1][j];
  35. b[i][j] = UP;
  36. }else{
  37. c[i][j] = c[i][j - 1];
  38. b[i][j] = LEFT;
  39. }
  40. }
  41. cout << c[i][j] << "," << b[i][j] << "\t";
  42. }// end-for
  43. cout << endl;
  44. }// end-for
  45. int i = m;
  46. int j = n;
  47. stack<char> stCh;
  48. while (i > 0 && j > 0 && c[i][j] > 0){
  49. if (b[i][j] == LU){
  50. stCh.push(sX[i - 1]);
  51. i -= 1;
  52. j -= 1;
  53. }else{
  54. if (b[i][j] == UP){
  55. i -= 1;
  56. }else{
  57. j -= 1;
  58. }
  59. }
  60. }
  61. while (!stCh.empty()){
  62. cout << stCh.top();
  63. stCh.pop();
  64. }
  65. cout << endl;
  66. int nLCSLen = c[m][n];
  67. for (i = 0; i <= m; i += 1){
  68. delete [] c[i];
  69. delete [] b[i];
  70. }
  71. delete [] c;
  72. delete [] b;
  73. return nLCSLen;
  74. }






声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/500421
推荐阅读
相关标签
  

闽ICP备14008679号