Skip to content

Latest commit

 

History

History

tiling-a-rectangle-with-the-fewest-squares

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Given a rectangle of size n x m, return the minimum number of integer-sided squares that tile the rectangle.

 

Example 1:

Input: n = 2, m = 3
Output: 3
Explanation: 3 squares are necessary to cover the rectangle.
2 (squares of 1x1)
1 (square of 2x2)

Example 2:

Input: n = 5, m = 8
Output: 5

Example 3:

Input: n = 11, m = 13
Output: 6

 

Constraints:

  • 1 <= n, m <= 13

Related Topics

[Dynamic Programming] [Backtracking]

Hints

Hint 1 Can you use backtracking to solve this problem ?.
Hint 2 Suppose you've placed a bunch of squares. Where is the natural spot to place the next square ?.
Hint 3 The maximum number of squares to be placed will be ≤ max(n,m).