/ 卡路里_最大卡路里

/ 卡路里

Problem statement:

问题陈述:

Shivang is very foodie but he has a diet plan. He has an array of elements indicating the calorie of food he can consume on that day. In his diet plan, he can’t eat on for three consecutive days. But since Shivang is very foodie, so he decided to take as much as calorie while remembering the fact that he cannot eat on three consecutive days. Help him in finding the number of calories he could take.

Shivang是位美食家,但他有饮食计划。 他具有一系列元素,这些元素指示他当天可以吃的食物的热量。 在他的饮食计划中,他连续三天不能进食。 但是由于Shivang是一位非常美食的人,因此他决定摄取尽可能多的卡路里,同时记住自己连续三天不能进食的事实。 帮助他找到可以摄取的卡路里数量。

Input:

输入:

n i.e number of days. In the next line is n space-separated values of ai indicating the intake of calorie per day.

n即天数。 在下一行中, i的 n个以空格分隔的值表示每天的卡路里摄入量。

Output:

输出:

Print the maximum amount of calorie, Shivang can take in a new line.

打印最大卡路里,Shivang可以换行。

Constraints:

限制条件:

1<=n<=100000
1<=ai<=100000

Example:

例:

Input:
2
n=5
Array input, calorie for each day:
3 2 1 10 3
Output:
18
Explanation:
Shivang will eat on 1st, 2nd, 4th and 5th day 
So, total he intakes 18 which is maximum
Input:
8
3 2 3 2 3 5 1 3 
Output:
17
Explanation:
Shivang will eat on 1st, 3rd, 5th , 6th and 8th 
day which totals (3+3+3+5+3) = 17

Solution Approach:

解决方法:

Let say,

说,

f(n) = maximum calorie can be taken till nth day under the constraint

No, let's think of the case,

不,让我们考虑一下情况,

  1. If Shivang takes food on ith day, he need to skip on (i-1)th day and sum with f(i-2)

    如果Shivang在 i 一天需要吃的,他需要跳过(I-1) 天,和与F(I-2)

  2. Tale food on ith day, (i-1)th day and skip on (i-2)th day, sum up with f(i-3)

    i上故事食品天, 第(i-1) 天,并跳过对第(i-2) 天,总结和f(I-3)

  3. Skip ith day, so take f(i-1)

    跳过 i 天,所以采取F(I-1)

So,

所以,

f(i)=maximum(f(i-1),f(i-2)+arr[i],arr[i]+arr[i-1]+f(i-3) i>=3
For base case,
f(0)=arr[0]
f(1)=arr[0]+arr[1]
f(2)=maximum(arr[0]+arr[1],arr[1]+arr[2],arr[2]+arr[0])

Converting to Dynamic programming

转换为动态编程

Now, we need to convert the above recursion into dynamic programming to avoid the overlapping sub-problem re-computation

现在,我们需要将上述递归转换为动态编程,以避免重叠的子问题重新计算

1)  Declare int DP[n];
2)  Fill with the base case
DP[0]=arr[0];
DP[1]=arr[0]+arr[1];
DP[2]=std::max(arr[1]+arr[2],std::max(arr[0]+arr[2],DP[1]));
3)  Compute the other values
for i=3 to n-1
DP[i]=maximum(arr[i]+arr[i-1]+DP[i-3],arr[i]+DP[i-2],DP[i-1]);
end for
4)  Return the result, DP[n-1];

C++ Implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
int maximumCalorie(vector<int> arr, int n)
{
int DP[n];
// base case
DP[0] = arr[0];
DP[1] = arr[0] + arr[1];
DP[2] = std::max(arr[1] + arr[2], std::max(arr[0] + arr[2], DP[1]));
for (int i = 3; i < n; i++) {
DP[i] = std::max(arr[i] + arr[i - 1] + DP[i - 3], std::max(arr[i] + DP[i - 2], DP[i - 1]));
}
return DP[n - 1];
}
int main()
{
int t, n, item;
cout << "Enter number of days\n";
cin >> n;
cout << "Enter calories\n";
vector<int> a;
for (int j = 0; j < n; j++) {
scanf("%d", &item);
a.push_back(item);
}
cout << "Maximum calorie sudhir can take: " << maximumCalorie(a, n) << endl;
return 0;
}

Output:

输出:

Enter number of days:
8 
Enter calories:
3 2 3 2 3 5 1 3 
Maximum calorie sudhir can take: 17

翻译自: https://www.includehelp.com/icp/maximum-calorie.aspx

/ 卡路里

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540547.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转载] Python类中的私有变量和公有变量

参考链接&#xff1a; Python中的私有变量 我们这里就直奔主题&#xff0c;不做基础铺垫&#xff0c;默认你有一些Python类的基础&#xff0c;大家在看这篇博客的时候&#xff0c;如果基础知识忘了&#xff0c;可以去菜鸟教程 从一个简单的类开始 class A(): #定义一…

OpenCV探索之路(二十五):制作简易的图像标注小工具

搞图像深度学习的童鞋一定碰过图像数据标注的东西&#xff0c;当我们训练网络时需要训练集数据&#xff0c;但在网上又没有找到自己想要的数据集&#xff0c;这时候就考虑自己制作自己的数据集了&#xff0c;这时就需要对图像进行标注。图像标注是件很枯燥又很费人力物力的一件…

固件的完整形式是什么?

FW&#xff1a;前进 (FW: Forward) FW is an abbreviation of "Forward". FW是“ Forward”的缩写 。 It is an expression, which is commonly used in Gmail or messaging platform. It is also written as FWD or Fwd or Fw. It shows that the email has been s…

[转载] python __slots__ 详解(上篇)

参考链接&#xff1a; Python的__name __(特殊变量) python中的new-style class要求继承Python中的一个内建类型&#xff0c; 一般继承object&#xff0c;也可以继承list或者dict等其他的内建类型。 在python新式类中&#xff0c;可以定义一个变量__slots__&#xff0c;它的作…

委托BegionInvoke和窗体BegionInvoke

委托BegionInvoke是指通过委托方法执行多线程任务&#xff0c;例如&#xff1a; //定义委托成员变量 delegate void dg_DeleAirport(); //指定委托函数 dg_DeleAirport dga AirportBLL.DeleteHistoryTransAirport; //通过BeginInvoke以异步线程方式执行委托函数&#xff0c;可…

图论 弦_混乱的弦

图论 弦Problem statement: 问题陈述&#xff1a; You are provided an input string S and the string "includehelp". You need to figure out all possible subsequences "includehelp" in the string S? Find out the number of ways in which the s…

[转载] Python列表操作

参考链接&#xff1a; Python中的基本运算符 Python列表&#xff1a; 序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置&#xff0c;或索引&#xff0c;第一个索引是0&#xff0c;第二个索引是1&#xff0c;依此类推&#xff1b; Python有6个序列的…

「原创」从马云、马化腾、李彦宏的对话,看出三人智慧差在哪里?

在今年中国IT领袖峰会上&#xff0c;马云、马化腾、李彦宏第一次单独合影&#xff0c;同框画面可以说很难得了。BAT关心的走势一直是同行们竞相捕捉的热点&#xff0c;所以三位大Boss在这次大会上关于人工智能的见解&#xff0c;也受到广泛关注与多方解读。马云认为机器比人聪明…

python 注释含注释_Python注释

python 注释含注释Python注释 (Python comments) Comments in Python are used to improve the readability of the code. It is useful information given by the programmer in source code for a better understanding of code and logic that they have used to solve the …

C2的完整形式是什么?

C2&#xff1a;核心2 (C2: Core 2) C2 is an abbreviation of "Core 2" or "Intel Core 2". C2是“ Core 2”或“ Intel Core 2”的缩写 。 It is a family of Intels processor which was launched on the 27th of July, 2006. It comprises a series of…

scala特性_Scala | 特性应用

scala特性特性应用 (Trait App) Scala uses a trait called "App" which is used to convert objects into feasible programs. This conversion is done using the DelayedInit and the objects are inheriting the trait named App will be using this function. T…

[转载] Python3中的表达式运算符

参考链接&#xff1a; Python中的除法运算符 1&#xff1a;Python常用表达式运算符 yield 生成器函数send协议 lambda args:expression 创建匿名函数 x if y else z 三元选择表达式(当y为真时&#xff0c;x才会被计算) x or y 逻辑或(仅但x为假时y才会被计算) x and …

字符串矩阵转换成长字符串_字符串矩阵

字符串矩阵转换成长字符串Description: 描述&#xff1a; In this article, we are going to see how backtracking can be used to solve following problems? 在本文中&#xff0c;我们将看到如何使用回溯来解决以下问题&#xff1f; Problem statement: 问题陈述&#xf…

pythonchallenge_level2

level2 地址&#xff1a;http://www.pythonchallenge.com/pc/def/ocr.html。 源码&#xff1a;gitcode.aliyun.com:qianlizhixing12/PythonChallenge.git。 问题&#xff1a;找出页面源码一点提示注释中的稀有字符。 #!/usr/bin/env python3 # -*- coding:UTF-8 -*-# Level 2im…

[转载] python类运算符的重载

参考链接&#xff1a; Python中的运算符重载 alist input().split() blist input().split() n float(input()) class Vector: def __init__(self, x0, y0, z0): # 请在此编写你的代码(可删除pass语句) self.X x self.Y y self.Z z # 代码结束 def __add__(self, other):…

r语言 运算符_R语言运算符

r语言 运算符R语言中的运算符 (Operators in R Language) Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical cal…

[转载] Python基础之类型转换与算术运算符

参考链接&#xff1a; Python中的运算符函数| 1 一、注释 1.注释&#xff1a;对程序进行标注和说明&#xff0c;增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释&#xff1a;使用#的形式。但是#的形式只能注释一行&#xff0c;如果有多行&#xff0c;就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…