We use cookies (including Google cookies) to personalize ads and analyze traffic. By continuing to use our site, you accept our Privacy Policy.

Maximum Trailing Zeros in a Cornered Path

Difficulty: Medium


Problem Description

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. 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.


Key Insights

  • A cornered path can either be purely horizontal, purely vertical, or consist of one turn from horizontal to vertical or vice versa.
  • Trailing zeros in a number are determined by the number of pairs of factors 2 and 5 in its prime factorization, as 10 = 2 * 5.
  • We can calculate the number of trailing zeros in the product of the path by counting the minimum of the count of 2s and 5s across the selected cells in the path.

Space and Time Complexity

Time Complexity: O(m * n)
Space Complexity: O(1)


Solution

To solve the problem, we will:

  1. Iterate through each cell in the grid as a potential starting point for the path.
  2. For each starting point, compute products for all possible horizontal and vertical paths, including paths that take one turn.
  3. Count the number of factors 2 and 5 in the products of these paths to determine the number of trailing zeros.
  4. Track the maximum number of trailing zeros found across all valid paths.

The algorithm primarily utilizes nested loops to explore the paths, and a simple counting mechanism to track the factors of 2 and 5.


Code Solutions

def maxTrailingZeros(grid):
    def count_factors(n, factor):
        count = 0
        while n % factor == 0:
            count += 1
            n //= factor
        return count

    max_zeros = 0
    m, n = len(grid), len(grid[0])

    for i in range(m):
        for j in range(n):
            # Count factors of 2 and 5 in the horizontal path
            count_2, count_5 = 0, 0
            for k in range(j, n):
                count_2 += count_factors(grid[i][k], 2)
                count_5 += count_factors(grid[i][k], 5)
                max_zeros = max(max_zeros, min(count_2, count_5))

            count_2, count_5 = 0, 0
            for k in range(j, -1, -1):
                count_2 += count_factors(grid[i][k], 2)
                count_5 += count_factors(grid[i][k], 5)
                max_zeros = max(max_zeros, min(count_2, count_5))

            # Count factors of 2 and 5 in the vertical path
            count_2, count_5 = 0, 0
            for k in range(i, m):
                count_2 += count_factors(grid[k][j], 2)
                count_5 += count_factors(grid[k][j], 5)
                max_zeros = max(max_zeros, min(count_2, count_5))

            count_2, count_5 = 0, 0
            for k in range(i, -1, -1):
                count_2 += count_factors(grid[k][j], 2)
                count_5 += count_factors(grid[k][j], 5)
                max_zeros = max(max_zeros, min(count_2, count_5))

    return max_zeros
← Back to All Questions