Answered step by step
Verified Expert Solution
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++
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started