`

使用动态规划解花店问题 两种思考方法分析

阅读更多

问题描述:

LITTLE SHOP OF FLOWERS
Description
You want to arrange the window of your flower shop in a most pleasant way. You have F bunches of flowers, each being of a different kind, and at least as many vases ordered in a row. The vases are glued onto the shelf and are numbered consecutively 1 through V, where V is the number of vases, from left to right so that the vase 1 is the leftmost, and the vase V is the rightmost vase. The bunches are moveable and are uniquely identified by integers between 1 and F. These id-numbers have a significance: They determine the required order of appearance of the flower bunches in the row of vases so that the bunch i must be in a vase to the left of the vase containing bunch j whenever i < j. Suppose, for example, you have bunch of azaleas (id-number=1), a bunch of begonias (id-number=2) and a bunch of carnations (id-number=3). Now, all the bunches must be put into the vases keeping their id-numbers in order. The bunch of azaleas must be in a vase to the left of begonias, and the bunch of begonias must be in a vase to the left of carnations. If there are more vases than bunches of flowers then the excess will be left empty. A vase can hold only one bunch of flowers.

Each vase has a distinct characteristic (just like flowers do). Hence, putting a bunch of flowers in a vase results in a certain aesthetic value, expressed by an integer. The aesthetic values are presented in a table as shown below. Leaving a vase empty has an aesthetic value of 0. 

 

V A S E S

1 2 3 4 5

Bunches

1 (azaleas)

7 23 -5 -24 16

2 (begonias)

5 21 -4 10

23

3 (carnations)

-21 5 -4 -20 20

According to the ta ble, azaleas, for example, would look great in vase 2, but they would look awful in vase 4.

To achieve the most pleasant effect you have to maximize the sum of aesthetic values for the arrangement while keeping the required ordering of the flowers. If more than one arrangement has the maximal sum value, any one of them will be acceptable. You have to produce exactly one arrangement.

Input

The first line contains two numbers: F, V.
The following F lines: Each of these lines contains V integers, so that Aij is given as the jth number on the (i+1)st line of the input file.

1 <= F <= 100 where F is the number of the bunches of flowers. The bunches are numbered 1 through F.

F <= V <= 100 where V is the number of vases.

-50 <= Aij <= 50 where Aij is the aesthetic value obtained by putting the flower bunch i into the vase j.

Output
The first line will contain the sum of aesthetic values for your arrangement.

Sample Input

3 5
7 23 -5 -24 16
5 21 -4 10 23
-21 5 -4 -20 20

Sample Output

53

分析:
这个问题简单描述一下,就是F束花,插在V个花瓶中,花和花瓶都有编号,分别为 1..F和1..V,花插在花瓶中,
需要按照编号的顺序插,例如1号不能插在2号的后边,每个花瓶只能插一束花。插在不同的瓶子上,都有不同的美观的值。(F<=V)
问题要求把F朵花,插在V个花瓶中有最大的美观值。

第一种方法的建立递推关系:
建立递推关系:
v[i[j]为第i朵花插到第j个花瓶上的美观值
most_b[i][j]表示,最后一朵花i,插在了第j个花瓶上的最大美观值。
most_b[i][j] = max{most_b[i-1][k]} + v[i][j] k = i-1...j-1
这个递推是的含义是:把i朵花插到j个花瓶上,并且第i朵插到第j个花瓶上了,他的值为把前i-1多花插到了
前k个花瓶上,并且第i-1朵插到第k个花瓶上了(由于顺序的限制,k的值只能为i-1到j-1)的最大值再加上把
第i朵插到第j个花瓶上的美观值。
得到这个递推关系就很容易写程序了:

cpp 代码
  1. #include<iostream></iostream>   
  2. using namespace std;   
  3.   
  4. int main(){   
  5.     int i,j,k;   
  6.     int most_b[100][100];//most_b[i][j]表示,最后一朵花i,插在了j个花瓶上的最大美观值   
  7.     int v[100][100];//v[i[j]为第i朵花插到第j个花瓶上的美观值   
  8.     const int MIN = -10000;   
  9.     int F,V;//F多花,V个花瓶   
  10.     int max = MIN;//最终的最大美观值   
  11.   
  12.     cin >> F >> V;   
  13.     for(i = 0; i < F; i++)   
  14.         for(j = 0; j < V; j++){   
  15.            cin >> v[i][j];   
  16.            most_b[i][j] = MIN;   
  17.         }   
  18.   
  19.       for(i = 0; i < V; i++)//初始化,把一朵花插到V个花瓶的最大美观值,为v[0][i]   
  20.         most_b[0][i] = v[0][i];   
  21.   
  22.     for(i = 1; i < F; i++)   
  23.       for(j = i; j < V; j++)   
  24.           for(k = i-1; k < j; k++)//递推求最大美观值   
  25.               if(most_b[i-1][k] + v[i][j] > most_b[i][j])   
  26.                   most_b[i][j] = most_b[i-1][k] + v[i][j];   
  27.        
  28.     for(i = F-1; i < V; i++)//最后一朵花插到了F-1到V那么多种可能的最大值即为所求的最大美观值   
  29.       if(max < most_b[F-1][i])   
  30.          max = most_b[F-1][i];   
  31.   
  32.     cout << max << endl;   
  33.     return 0;   
  34. }  

 第二种方法建立递推关系:
v[i[j]为第i朵花插到第j个花瓶上的美观值
我们换一个角度来考虑:
现在用most_b[i][j]表示把i朵花插到j个花瓶的最大美观值,我们想以此建立递推关系:
most_b[i][j] = max{most_b[i][j-1],most_b[i-1][j-1] + v[i][j]}
这个递推关系的含义是:
把i朵花插到j个花瓶的最大美观值=
max{把i朵花插到j-1个花瓶的最大美观值,把i-1朵花插到j-1个花瓶的最大美观值+把第i朵花插到第j个花瓶的美观值}
得到这个递推关系写出的代码要比上面的效率高:
为了方便,most_b的0行和0列没用,都从1开始

cpp 代码
  1. #include<iostream></iostream>   
  2. using namespace std;   
  3.   
  4. int main(){   
  5.   int i,j;   
  6.     int most_b[101][101];   
  7.     int v[101][101];   
  8.     const int MIN = -50001;   
  9.     int F,V;   
  10.     int max = MIN;   
  11.   
  12.     cin >> F >> V;   
  13.     for(i = 1; i <= F; i++)   
  14.         for(j = 1; j <= V; j++){   
  15.            cin >> v[i][j];   
  16.            most_b[i][j] = MIN;   
  17.         }   
  18.   
  19. //通过most_b[0][i]辅助作用可以减少不少代码,   
  20. //如果不用most_b[0][i],你需要初始化most_b第一行的值为v第一行的值   
  21. //第一列维most_b[i][1] = max{v[i..i][1]}   
  22. //通过下面初始化,把上面两个初始化操作合并到了递推求解那个循环中了   
  23.     for(i = 0; i <= V; i++)   
  24.         most_b[0][i] = 0;   
  25.        
  26. //从底向上递推求解:   
  27.      for(i = 1; i <= F; i++)   
  28.          for(j = i; j <= i + V-F; j++)   
  29.              if(most_b[i][j-1] > most_b[i-1][j-1] + v[i][j])   
  30.                   most_b[i][j] = most_b[i][j-1];   
  31.              else  
  32.                   most_b[i][j] = most_b[i-1][j-1] + v[i][j];   
  33.         
  34.      cout << most_b[F][V] << endl;   
  35.      return 0;   
  36. }  
分享到:
评论

相关推荐

    网上花店管理系统需求分析

    网上花店管理系统是一种基于互联网技术,为用户提供在线购买鲜花、礼品等服务的平台。这个系统的构建需要经过一系列的软件开发步骤,包括可行性分析、需求分析、系统设计和测试。以下是对这些关键步骤的详细说明: ...

    网上花店系统的数据库需求分析报告

    整个报告涵盖了网上花店系统数据库的全面需求分析,从功能规划到数据库的物理实现,充分展示了数据库设计在信息系统开发中的核心地位。通过这样的设计,网上花店能够更高效地管理其业务,提升服务质量,满足不断增长...

    动态规划的特点及其应用

    1. 动态规划与递推:递推是一种简单的迭代过程,而动态规划则是递推方法的扩展,它利用了子问题的最优解来解决更大规模的问题。 2. 动态规划与搜索:搜索算法(如回溯法、分支限界法)可能需要遍历所有可能的解空间...

    基于UML的鲜花店网上订花系统分析与设计

    在鲜花店网上订花系统的分析阶段,我们可以使用UML的用例图来定义系统的主要参与者(如用户、管理员)以及他们与系统之间的交互,明确系统的核心功能。 接着,类图是UML中描述系统静态结构的重要工具。在本系统中,...

    花店分析可行性报告.pptx

    【花店分析可行性报告】 这份报告详细探讨了新开设的花店——别粗心栽的商业模式、盈利点、结构组成、特色以及环境分析,同时制定了市场营销战略和战术,旨在确保花店的成功运营。 **模式概述** 别粗心栽不仅销售...

    电子商务个案分析之网上花店

    这是一个 电子商务个案分析之网上花店

    网上花店产品智能推荐与预定分析系统研究学士学位论文.doc

    在预测算法的选择上,论文研究并比较了多种预测方法,最终筛选出了两种适应性较强的预测算法,可能是时间序列分析(如ARIMA模型)和机器学习算法(如随机森林、支持向量机等)。通过对这两种算法进行改进和优化,...

    网上花店销售系统规划分析

    内容包括市场环境分析、定位与目标、优势、功能模块等

    花店源码珍爱花店源码

    ASP是一种由微软公司开发的服务器端脚本环境,用于生成动态网页。使用ASP,开发者可以在服务器端执行代码,生成HTML并发送到用户的浏览器。这表明这套源码适用于那些熟悉ASP语言或者愿意学习ASP的开发者,他们可以...

    基于UML的鲜花店网上订花系统分析与设计毕业设计

    是一个综合性的项目,它涵盖了软件工程中的多个重要知识点,主要围绕B/S(浏览器/服务器)架构,使用STRUTS框架进行开发,并且借助统一建模语言(UML)进行系统分析和设计。这个系统旨在为用户提供方便快捷的在线订...

    动态规划总结

    ### 动态规划总结 #### 1. 按状态类型分类 ...以上是对不同类型的动态规划问题的概述,每种类型都有其独特的状态定义和转移方程,理解这些概念有助于我们在遇到具体问题时能够快速地分析并解决问题。

    动态规划的技巧——阶段的划分和状态的表示

    此时,如果采用标准的动态规划方法,通过增加一维状态变量来表示两条路径的位置,状态转移时分别考虑两条路径,就能够有效地解决问题。这种方法不仅能够保证路径不重叠,还能保持动态规划的灵活性和效率。 ##### ...

    网上花店_javaweb_网上花店网页设计_网上花店网页_

    【网上花店_javaweb_网上花店网页设计_网上花店网页】 网页设计是一项融合技术与艺术的创造性工作,而"网上花店"项目则是一个典型的JavaWeb应用程序示例,旨在为用户提供一个在线购买花卉的平台。在这个项目中,...

    jsp网上花店MVC

    【JSP网上花店MVC】是一个基于JavaServer Pages(JSP)技术构建的电子商务应用,主要用于模拟在线花店的运营。在这个系统中,MVC(Model-View-Controller)设计模式被广泛应用,以实现良好的代码组织和业务逻辑与...

    在线花店系统(asp实现)

    【在线花店系统(asp实现)】是一种基于ASP(Active Server Pages)技术开发的电子商务解决方案,主要用于计算机类学生的毕业设计项目。ASP是微软推出的一种服务器端脚本环境,用于生成动态网页,它允许开发者在HTML...

    花店网站.zip

    通过以上分析,我们可以看出这个"花店网站.zip"文件不仅包含了基本的网页元素,还注重用户体验和信息的层次结构。无论是对于初学者了解Web开发的基本概念,还是对于专业人士研究如何优化用户界面,都是一个有价值的...

    UML网上花店课程设计

    UML 网上花店课程设计 UML 网上花店课程设计是基于Unified Modeling Language(统一建模语言)的网上花店系统设计,旨在提供一个功能完善的电子商务平台。该系统的主要功能包括客户借口模块、管理员接口模块和数据...

    微信小程序demo:花店(源代码+截图)

    微信小程序demo:花店(源代码+截图)微信小程序demo:花店(源代码+截图)微信小程序demo:花店(源代码+截图)微信小程序demo:花店(源代码+截图)微信小程序demo:花店(源代码+截图)微信小程序demo:花店(源代码+截图)...

Global site tag (gtag.js) - Google Analytics