Class Solution
java.lang.Object
g2201_2300.s2245_maximum_trailing_zeros_in_a_cornered_path.Solution
2245 - Maximum Trailing Zeros in a Cornered Path.<p>Medium</p>
<p>You are given a 2D integer array <code>grid</code> of size <code>m x n</code>, where each cell contains a positive integer.</p>
<p>A <strong>cornered path</strong> is defined as a set of adjacent cells with <strong>at most</strong> one turn. More specifically, the path should exclusively move either <strong>horizontally</strong> or <strong>vertically</strong> 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 <strong>alternate</strong> direction: move vertically if it moved horizontally, and vice versa, also without returning to a previously visited cell.</p>
<p>The <strong>product</strong> of a path is defined as the product of all the values in the path.</p>
<p>Return <em>the <strong>maximum</strong> number of <strong>trailing zeros</strong> in the product of a cornered path found in</em> <code>grid</code>.</p>
<p>Note:</p>
<ul>
<li><strong>Horizontal</strong> movement means moving in either the left or right direction.</li>
<li><strong>Vertical</strong> movement means moving in either the up or down direction.</li>
</ul>
<p><strong>Example 1:</strong></p>
<p><img src="https://assets.leetcode.com/uploads/2022/03/23/ex1new2.jpg" alt="" /></p>
<p><strong>Input:</strong> 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]]</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Explanation:</strong> The grid on the left shows a valid cornered path.</p>
<p>It has a product of 15 * 20 * 6 * 1 * 10 = 18000 which has 3 trailing zeros.</p>
<p>It can be shown that this is the maximum trailing zeros in the product of a cornered path.</p>
<p>The grid in the middle is not a cornered path as it has more than one turn.</p>
<p>The grid on the right is not a cornered path as it requires a return to a previously visited cell.</p>
<p><strong>Example 2:</strong></p>
<p><img src="https://assets.leetcode.com/uploads/2022/03/25/ex2.jpg" alt="" /></p>
<p><strong>Input:</strong> grid = [[4,3,2],[7,6,1],[8,8,8]]</p>
<p><strong>Output:</strong> 0</p>
<p><strong>Explanation:</strong> The grid is shown in the figure above.</p>
<p>There are no cornered paths in the grid that result in a product with a trailing zero.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>m == grid.length</code></li>
<li><code>n == grid[i].length</code></li>
<li><code>1 <= m, n <= 10<sup>5</sup></code></li>
<li><code>1 <= m * n <= 10<sup>5</sup></code></li>
<li><code>1 <= grid[i][j] <= 1000</code></li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
maxTrailingZeros
public int maxTrailingZeros(int[][] grid)
-