资源简介
用动态规划解决营养套餐问题,类似于0-1背包,代码为C++。
代码片段和文件信息
#include
#include
#include
using namespace::std;
/*
* foodCount: the total number of food
* total: the rest of money
* price: price array of each food
* value: nutrition value of each food
* result: result[i][j] represents the maximum nutrition value with buying the i foods
*/
vector maxNutritionValue(int foodCount int total vector &price vector &value vector> &result)
{
for (int i = 1; i <= foodCount; ++i)
{
for (int j = 1; j <= total; ++j)
{
if (price[i] > j) // can not pay the ith food
result[i][j] = result[i - 1][j];
else
{
// two state represent the (i-1)th round
int value1 = result[i - 1][j - price[i]] + value[i];
int value2 = result[i - 1][j];
// the ith state can only change from the two (i-1)th state
if (value1 > value2)
result[i][j] = value1;
else
result[i][j] = value2;
}
}
}
vector plan(foodCount 0);
// get the chosen of foods if plan[i] = 1 the ith food has been chosen otherwise plan[i] = 0
for(int i = foodCount; i > 0; --i)
{
if(result[i][total] > result[i - 1][total])
{
plan[i - 1] = 1; // buy the food
total -= price[i];
}
else
- 上一篇:C语言解决哲学家就餐问题
- 下一篇:马尔科夫链的C++代码实现
相关资源
- 汽车加油行驶问题 C++算法实现
- dp动态规划动归经典问题买书问题01背
- 动态规划—最短编辑问题—非常详细
- 动态规划法、贪心算法、回溯法、分
- 0/1背包问题蛮力、动态规划、回溯、
- 蛮力法、分治法和动态规划法设计最
- 算法分析与设计实验报告贪心法,动
- 基于动态规划的TSP问题求解源码
- 动态规划算法求解字符串比较问题c
- 最长公共子序列的动态规划算法
- 动态规划实现最佳加法表达式求最小
- c++语言写最长公共子序列问题
- 动态规划最短路径.cpp
- 302_规格划分矩形.cpp
- 动态规划解TSP(旅行商)问题C++源码
- C++动态规划求解TSP问题备忘录方法
- 最优二分搜索树动态规划
- 背包问题C语言实现, 动态规划
- c语言实现的动态规划求最短路径长度
- 动态规划算法实现多段图最短路径问
- 最长公共子序列,C语言动态规划
- 最大长方体问题--动态规划C++
- c c++ 01背包问题动态规划解决
- 用动态规划法求解流水线调度问题
- 动态规划灰度压缩bmp
- QtC++用动态规划,djistra,Astar,Qlear
- 资源分配c++代码
- 动态规划实现立体匹配
- 用动态规划思想求解最长公共子串
- 旅游背包问题
评论
共有 条评论