Given a character matrix where every cell has one of the following values.
'C' --> This cell has coin
'#' --> This cell is a blocking cell.
We can not go anywhere from this.
'E' --> This cell is empty. We don't get
a coin, but we can move from here.
Initial position is cell (0, 0) and initial direction is right.
Following are rules for movements across cells.
If face is Right, then we can move to below cells
- Move one step ahead, i.e., cell (i, j+1) and direction remains right.
- Move one step down and face left, i.e., cell (i+1, j) and direction becomes left.
- Move one step ahead, i.e., cell (i, j-1) and direction remains left.
- Move one step down and face right, i.e., cell (i+1, j) and direction becomes right.
- Collect maximum points in a grid using two traversals
- Maximum number of multiples in an array before any element
- Find minimum number of coins that make a given value
- Number of paths with exactly k coins
- Probability of getting at least K heads in N tosses of Coins
- Burst Balloon to maximize coins
- Probability of getting more heads than tails when N biased coins are tossed
- Minimum number of coins that can generate all the values in the given range
- Generate a combination of minimum coins that sums to a given value
- Check if a path exists for a cell valued 1 to reach the bottom right corner of a Matrix before any cell valued 2
- Minimum cost to reach end of array array when a maximum jump of K index is allowed
- Minimum number of jumps to reach end
- Count number of ways to jump to reach end
- Minimum number of jumps to reach end | Set 2 (O(n) solution)
- Remove array end element to maximize the sum of product
- Number of ways to reach the end of matrix with non-zero AND value
- Minimize the number of steps required to reach the end of the array
- Find minimum steps required to reach the end of a matrix | Set - 1
- Minimum distance to the end of a grid from source
- Find minimum steps required to reach the end of a matrix | Set 2
If face is Left, then we can move to below cells
Final position can be anywhere and final direction can also be anything. The target is to collect maximum coins.
We strongly recommend you to minimize your browser and try this yourself first.
The above problem can be recursively defined as below:
maxCoins(i, j, d): Maximum number of coins that can be
collected if we begin at cell (i, j)
and direction d.
d can be either 0 (left) or 1 (right)
// If this is a blocking cell, return 0. isValid() checks
// if i and j are valid row and column indexes.
If (arr[i][j] == '#' or isValid(i, j) == false)
return 0
// Initialize result
If (arr[i][j] == 'C')
result = 1;
Else
result = 0;
If (d == 0) // Left direction
return result + max(maxCoins(i+1, j, 1), // Down
maxCoins(i, j-1, 0)); // Ahead in left
If (d == 1) // Right direction
return result + max(maxCoins(i+1, j, 1), // Down
maxCoins(i, j+1, 0)); // Ahead in right
Below is C++ implementation of above recursive algorithm.
C++
// A Naive Recursive C++ program to find maximum number of coins // that can be collected before hitting a dead end #include<bits/stdc++.h> using namespace std; #define R 5 #define C 5 // to check whether current cell is out of the grid or not bool isValid(int i, int j) { return (i >=0 && i < R && j >=0 && j < C); } // dir = 0 for left, dir = 1 for facing right. This function returns // number of maximum coins that can be collected starting from (i, j). int maxCoinsRec(char arr[R][C], int i, int j, int dir) { // If this is a invalid cell or if cell is a blocking cell if (isValid(i,j) == false || arr[i][j] == '#') return 0; // Check if this cell contains the coin 'C' or if its empty 'E'. int result = (arr[i][j] == 'C')? 1: 0; // Get the maximum of two cases when you are facing right in this cell if (dir == 1) // Direction is right return result + max(maxCoinsRec(arr, i+1, j, 0), // Down maxCoinsRec(arr, i, j+1, 1)); // Ahead in right // Direction is left // Get the maximum of two cases when you are facing left in this cell return result + max(maxCoinsRec(arr, i+1, j, 1), // Down maxCoinsRec(arr, i, j-1, 0)); // Ahead in left } // Driver program to test above function int main() { char arr[R][C] = { {'E', 'C', 'C', 'C', 'C'}, {'C', '#', 'C', '#', 'E'}, {'#', 'C', 'C', '#', 'C'}, {'C', 'E', 'E', 'C', 'E'}, {'C', 'E', '#', 'C', 'E'} }; // As per the question initial cell is (0, 0) and direction is // right cout << "Maximum number of collected coins is " << maxCoinsRec(arr, 0, 0, 1); return 0; } |
Python3
# A Naive Recursive Python 3 program to # find maximum number of coins # that can be collected before hitting a dead end R= 5C= 5 # to check whether current cell is out of the grid or not def isValid( i, j): return (i >=0 and i < R and j >=0 and j < C) # dir = 0 for left, dir = 1 for facing right. # This function returns # number of maximum coins that can be collected # starting from (i, j). def maxCoinsRec(arr, i, j, dir): # If this is a invalid cell or if cell is a blocking cell if (isValid(i,j) == False or arr[i][j] == '#'): return 0 # Check if this cell contains the coin 'C' or if its empty 'E'. if (arr[i][j] == 'C'): result=1 else: result=0 # Get the maximum of two cases when you are facing right in this cell if (dir == 1): # Direction is right return (result + max(maxCoinsRec(arr, i+1, j, 0), maxCoinsRec(arr, i, j+1, 1))) # Direction is left # Get the maximum of two cases when you are facing left in this cell return (result + max(maxCoinsRec(arr, i+1, j, 1), maxCoinsRec(arr, i, j-1, 0))) # Driver program to test above function if __name__=='__main__': arr = [ ['E', 'C', 'C', 'C', 'C'], ['C', '#', 'C', '#', 'E'], ['#', 'C', 'C', '#', 'C'], ['C', 'E', 'E', 'C', 'E'], ['C', 'E', '#', 'C', 'E'] ] # As per the question initial cell is (0, 0) and direction is # right print("Maximum number of collected coins is ", maxCoinsRec(arr, 0, 0, 1)) # this code is contributed by ash264 |
Output:
Maximum number of collected coins is 8
The time complexity of above solution recursive is exponential. We can solve this problem in Polynomial Time using Dynamic Programming. The idea is to use a 3 dimensional table dp[R][C][k] where R is number of rows, C is number of columns and d is direction. Below is Dynamic Programming based C++ implementation.
C++
// A Dynamic Programming based C++ program to find maximum // number of coins that can be collected before hitting a // dead end #include<bits/stdc++.h> using namespace std; #define R 5 #define C 5 // to check whether current cell is out of the grid or not bool isValid(int i, int j) { return (i >=0 && i < R && j >=0 && j < C); } // dir = 0 for left, dir = 1 for right. This function returns // number of maximum coins that can be collected starting from // (i, j). int maxCoinsUtil(char arr[R][C], int i, int j, int dir, int dp[R][C][2]) { // If this is a invalid cell or if cell is a blocking cell if (isValid(i,j) == false || arr[i][j] == '#') return 0; // If this subproblem is already solved than return the // already evaluated answer. if (dp[i][j][dir] != -1) return dp[i][j][dir]; // Check if this cell contains the coin 'C' or if its 'E'. dp[i][j][dir] = (arr[i][j] == 'C')? 1: 0; // Get the maximum of two cases when you are facing right // in this cell if (dir == 1) // Direction is right dp[i][j][dir] += max(maxCoinsUtil(arr, i+1, j, 0, dp), // Down maxCoinsUtil(arr, i, j+1, 1, dp)); // Ahead in rught // Get the maximum of two cases when you are facing left // in this cell if (dir == 0) // Direction is left dp[i][j][dir] += max(maxCoinsUtil(arr, i+1, j, 1, dp), // Down maxCoinsUtil(arr, i, j-1, 0, dp)); // Ahead in left // return the answer return dp[i][j][dir]; } // This function mainly creates a lookup table and calls // maxCoinsUtil() int maxCoins(char arr[R][C]) { // Create lookup table and initialize all values as -1 int dp[R][C][2]; memset(dp, -1, sizeof dp); // As per the question initial cell is (0, 0) and direction // is right return maxCoinsUtil(arr, 0, 0, 1, dp); } // Driver program to test above function int main() { char arr[R][C] = { {'E', 'C', 'C', 'C', 'C'}, {'C', '#', 'C', '#', 'E'}, {'#', 'C', 'C', '#', 'C'}, {'C', 'E', 'E', 'C', 'E'}, {'C', 'E', '#', 'C', 'E'} }; cout << "Maximum number of collected coins is " << maxCoins(arr); return 0; } |
Output:
Maximum number of collected coins is 8
Time Complexity of above solution is O(R x C x d). Since d is 2, time complexity can be written as O(R x C).
Thanks to Gaurav Ahirwar for suggesting above solution.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.
Recommended Posts:
Improved By : ash264

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

