1444. Number of Ways of Cutting a Pizza
https://leetcode.com/problems/number-of-ways-of-cutting-a-pizza/
Last updated
Was this helpful?
https://leetcode.com/problems/number-of-ways-of-cutting-a-pizza/
Last updated
Was this helpful?
Given a rectangular pizza represented as a rows x cols
matrix containing the following characters: 'A'
(an apple) and '.'
(empty cell) and given the integer k
. You have to cut the pizza into k
pieces using k-1
cuts.
For each cut you choose the direction: vertical or horizontal, then you choose a cut position at the cell boundary and cut the pizza into two pieces. If you cut the pizza vertically, give the left part of the pizza to a person. If you cut the pizza horizontally, give the upper part of the pizza to a person. Give the last piece of pizza to the last person.
Return the number of ways of cutting the pizza such that each piece contains at least one apple. Since the answer can be a huge number, return this modulo 10^9 + 7.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= rows, cols <= 50
rows == pizza.length
cols == pizza[i].length
1 <= k <= 10
pizza
consists of characters 'A'
and '.'
only.
方格上有苹果,每次能沿着行或列切割,并把上面或左边的苹果分出去,要求每次都能分出至少一个苹果,问一共有多少种分法。找所有的情况=> DP/DFS。从(0,0)起点开始,遍历所有可能的切割方式,检查切割后上或左侧是否有苹果。如有,切割后的剩下的格子是独立子问题,因此可以用DFS + memo记忆化递归该子问题。判断指定范围内格子是否有苹果 => Range Sum Immutable 2D。
思路参考自花花