790 Domino and Tromino Tiling
1. Question
We have two types of tiles: a 2x1 domino shape, and an "L" tromino shape. These shapes may be rotated.
Given N, how many ways are there to tile a 2 x N board? Return your answer modulo 10^9 + 7.
(In a tiling, every square must be covered by a tile. Two tilings are different if and only if there are two 4-directionally adjacent cells on the board such that exactly one of the tilings has both squares occupied by a tile.)
Note:
N will be in range
[1, 1000]
.
2. Implementation
(1) DP
思路: 从n = 1到n = 5先画出能拼出tile的,然后推导出递归公式。具体推导可以看这里。数学推导可以参考这个。
3. Time & Space Complexity
DP:时间复杂度O(n), 空间复杂度O(n)
Last updated