Maximum Product Path in Matrix - Google Top Interview Questions


Problem Statement :


You are given a two-dimensional list of integers matrix. 

You are currently at the top left corner and want to move to the bottom right corner.

In each move, you can move down or right.

Return the maximum product of the cells visited by going to the bottom right cell. 

If the result is negative, return -1. Otherwise, mod the result by 10 ** 9 + 7.

Constraints

1 ≤ n, m ≤ 20 where n and m are the number of rows and columns in matrix

-2 ≤ matrix[r][c] ≤ 2

Example 1

Input

matrix = [

    [2, 1, -2],

    [-1, -1, -2],

    [1, 1, 1]

]

Output

8

Explanation

We can take the following path: [2, 1, -2, -2, 1].



Solution :



title-img




                        Solution in C++ :

typedef long long ll;

int solve(vector<vector<int>>& matrix) {
    int n = matrix.size(), m = matrix[0].size();
    vector<vector<pair<ll, ll>>> f(n, vector<pair<ll, ll>>(m));
    f[0][0] = {matrix[0][0], matrix[0][0]};
    for (int i = 0; i < n; ++i)
        for (int j = 0; j < m; ++j) {
            ll lo = LLONG_MAX, hi = LLONG_MIN;
            if (i > 0) {
                lo = min(lo,
                         min(f[i - 1][j].first * matrix[i][j], f[i - 1][j].second * matrix[i][j]));
                hi = max(hi,
                         max(f[i - 1][j].first * matrix[i][j], f[i - 1][j].second * matrix[i][j]));
            }
            if (j > 0) {
                lo = min(lo,
                         min(f[i][j - 1].first * matrix[i][j], f[i][j - 1].second * matrix[i][j]));
                hi = max(hi,
                         max(f[i][j - 1].first * matrix[i][j], f[i][j - 1].second * matrix[i][j]));
            }
            if (i || j) f[i][j] = {lo, hi};
        }
    return f[n - 1][m - 1].second >= 0 ? f[n - 1][m - 1].second % 1000000007 : -1;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[][] mat) {
        int n = mat.length, m = mat[0].length;
        long dp[][][] = new long[n][m][2];
        dp[0][0][0] = dp[0][0][1] = mat[0][0];

        // max,min
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (i == 0 && j == 0)
                    continue;
                dp[i][j][0] = Long.MIN_VALUE;
                dp[i][j][1] = Long.MAX_VALUE;
            }
        }

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (i == 0 && j == 0)
                    continue;
                if (j - 1 >= 0) {
                    int cur = mat[i][j];
                    dp[i][j][0] = Math.max(dp[i][j][0], cur * dp[i][j - 1][0]);
                    dp[i][j][0] = Math.max(dp[i][j][0], cur * dp[i][j - 1][1]);
                    dp[i][j][1] = Math.min(dp[i][j][1], cur * dp[i][j - 1][0]);
                    dp[i][j][1] = Math.min(dp[i][j][1], cur * dp[i][j - 1][1]);
                }

                if (i - 1 >= 0) {
                    int cur = mat[i][j];
                    dp[i][j][0] = Math.max(dp[i][j][0], cur * dp[i - 1][j][0]);
                    dp[i][j][0] = Math.max(dp[i][j][0], cur * dp[i - 1][j][1]);
                    dp[i][j][1] = Math.min(dp[i][j][1], cur * dp[i - 1][j][0]);
                    dp[i][j][1] = Math.min(dp[i][j][1], cur * dp[i - 1][j][1]);
                }
            }
        }

        return (dp[n - 1][m - 1][0] < 0) ? -1 : (int) (dp[n - 1][m - 1][0] % 1000000007);
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def mod(self, x):
        if x < 0:
            return -1 * (abs(x) % int(1e9 + 7))
        return x % int(1e9 + 7)

    def solve(self, mat):
        @cache
        def f(r, c):
            m, n = len(mat), len(mat[0])
            if r == m - 1 and c == n - 1:
                return mat[r][c], mat[r][c]
            mymin, mymax, cur = 1000, -1000, mat[r][c]
            if r + 1 < m:
                nmax, nmin = f(r + 1, c)
                mymin = min(mymin, cur * nmax, cur * nmin)
                mymax = max(mymax, cur * nmax, cur * nmin)
            if c + 1 < n:
                nmax, nmin = f(r, c + 1)
                mymin = min(mymin, cur * nmax, cur * nmin)
                mymax = max(mymax, cur * nmax, cur * nmin)
            return mymax, mymin

        hi, lo = f(0, 0)
        return max(self.mod(hi), self.mod(lo), -1)
                    


View More Similar Problems

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →

AND xor OR

Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value

View Solution →

Waiter

You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the

View Solution →

Queue using Two Stacks

A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic que

View Solution →

Castle on the Grid

You are given a square grid with some cells open (.) and some blocked (X). Your playing piece can move along any row or column until it reaches the edge of the grid or a blocked cell. Given a grid, a start and a goal, determine the minmum number of moves to get to the goal. Function Description Complete the minimumMoves function in the editor. minimumMoves has the following parameter(s):

View Solution →