LeetCode-in-Java

2245. Maximum Trailing Zeros in a Cornered Path

Medium

You are given a 2D integer array grid of size m x n, where each cell contains a positive integer.

A cornered path is defined as a set of adjacent cells with at most one turn. More specifically, the path should exclusively move either horizontally or vertically up to the turn (if there is one), without returning to a previously visited cell. After the turn, the path will then move exclusively in the alternate direction: move vertically if it moved horizontally, and vice versa, also without returning to a previously visited cell.

The product of a path is defined as the product of all the values in the path.

Return the maximum number of trailing zeros in the product of a cornered path found in grid.

Note:

Example 1:

Input: grid = [[23,17,15,3,20],[8,1,20,27,11],[9,4,6,2,21],[40,9,1,10,6],[22,7,4,5,3]]

Output: 3

Explanation: The grid on the left shows a valid cornered path.

It has a product of 15 * 20 * 6 * 1 * 10 = 18000 which has 3 trailing zeros.

It can be shown that this is the maximum trailing zeros in the product of a cornered path.

The grid in the middle is not a cornered path as it has more than one turn.

The grid on the right is not a cornered path as it requires a return to a previously visited cell.

Example 2:

Input: grid = [[4,3,2],[7,6,1],[8,8,8]]

Output: 0

Explanation: The grid is shown in the figure above.

There are no cornered paths in the grid that result in a product with a trailing zero.

Constraints:

Solution

public class Solution {
    public int maxTrailingZeros(int[][] grid) {
        int m = grid.length;
        int n = grid[0].length;
        int max = 0;
        int[][] row2 = new int[m + 1][n + 1];
        int[][] row5 = new int[m + 1][n + 1];
        int[][] col2 = new int[m + 1][n + 1];
        int[][] col5 = new int[m + 1][n + 1];
        int[][] factor2 = new int[m][n];
        int[][] factor5 = new int[m][n];
        for (int r = 0; r < m; r++) {
            for (int c = 0; c < n; c++) {
                int factorTwo = findFactor(grid[r][c], 2);
                int factorFive = findFactor(grid[r][c], 5);
                row2[r + 1][c + 1] = row2[r + 1][c] + factorTwo;
                row5[r + 1][c + 1] = row5[r + 1][c] + factorFive;
                col2[r + 1][c + 1] = col2[r][c + 1] + factorTwo;
                col5[r + 1][c + 1] = col5[r][c + 1] + factorFive;
                factor2[r][c] = factorTwo;
                factor5[r][c] = factorFive;
            }
        }
        for (int r = 0; r < m; r++) {
            for (int c = 0; c < n; c++) {
                int cur2 = factor2[r][c];
                int cur5 = factor5[r][c];
                int up2 = col2[r + 1][c + 1];
                int up5 = col5[r + 1][c + 1];
                int down2 = col2[m][c + 1] - col2[r][c + 1];
                int down5 = col5[m][c + 1] - col5[r][c + 1];
                int left2 = row2[r + 1][c + 1];
                int left5 = row5[r + 1][c + 1];
                int right2 = row2[r + 1][n] - row2[r + 1][c];
                int right5 = row5[r + 1][n] - row5[r + 1][c];
                max = Math.max(max, Math.min(left2 + up2 - cur2, left5 + up5 - cur5));
                max = Math.max(max, Math.min(right2 + up2 - cur2, right5 + up5 - cur5));
                max = Math.max(max, Math.min(left2 + down2 - cur2, left5 + down5 - cur5));
                max = Math.max(max, Math.min(right2 + down2 - cur2, right5 + down5 - cur5));
            }
        }
        return max;
    }

    private int findFactor(int a, int b) {
        int factors = 0;
        while (a % b == 0) {
            a /= b;
            factors++;
        }
        return factors;
    }
}