Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

c++ Consider the Collecting Apples problem given in class, rewrite the solution such that moving from start to end includes three types of moves: Right,

c++
image text in transcribed
image text in transcribed
Consider the "Collecting Apples" problem given in class, rewrite the solution such that moving from start to end includes three types of moves: Right, Down, Right-Down. The Right-down move means that you can move diagonally. Also, black apples indicate that these are blocked and cannot be crossed as part of the path from start to end. The blocked cells are represented by negative values in the input. Write the function Count ingApples that takes as input a 2D array apples, and the values of two integers N and M(2N,2M). N represents the number of rows, and M represents the number of columns in the given apples 2D array. You will not be asked to read the values, the apples 2D array will be ready automatically and fed to your countingapples function. If there is no path from start to end, the maximum number of collected apples will be 0 . Also, if the start cell is a blocked one, there is no solution and the maximum number of collected apples will be 0 in this case as well. Output Your function should return the maximum number of apples that can be collected. Note: The program will be automatically tested by calling your Countingapples (int** apples, int N, int ) function. You are not allowed to change the signature of this function. Inside the function, you can use apples as a 2D array. You can define additional functions if you need. The function should return the maximum number of apples that can be collected

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems For Advanced Applications 15th International Conference Dasfaa 2010 Tsukuba Japan April 2010 Proceedings Part 1 Lncs 5981

Authors: Hiroyuki Kitagawa ,Yoshiharu Ishikawa ,Wenjie Li ,Chiemi Watanabe

2010th Edition

3642120253, 978-3642120251

More Books

Students also viewed these Databases questions