2320. Count Number of Ways to Place Houses
Description
There is a street with n * 2
plots, where there are n
plots on each side of the street. The plots on each side are numbered from 1
to n
. On each plot, a house can be placed.
Return the number of ways houses can be placed such that no two houses are adjacent to each other on the same side of the street. Since the answer may be very large, return it modulo 109 + 7
.
Note that if a house is placed on the ith
plot on one side of the street, a house can also be placed on the ith
plot on the other side of the street.
Example 1:
Input: n = 1 Output: 4 Explanation: Possible arrangements: 1. All plots are empty. 2. A house is placed on one side of the street. 3. A house is placed on the other side of the street. 4. Two houses are placed, one on each side of the street.
Example 2:
Input: n = 2 Output: 9 Explanation: The 9 possible arrangements are shown in the diagram above.
Constraints:
1 <= n <= 104
Solutions
Solution 1: Dynamic Programming
Since the placement of houses on both sides of the street does not affect each other, we can consider the placement on one side only, and then square the number of ways for one side to get the final result modulo.
We define \(f[i]\) to represent the number of ways to place houses on the first \(i+1\) plots, with the last plot having a house. We define \(g[i]\) to represent the number of ways to place houses on the first \(i+1\) plots, with the last plot not having a house. Initially, \(f[0] = g[0] = 1\).
When placing the \((i+1)\)-th plot, there are two cases:
- If the \((i+1)\)-th plot has a house, then the \(i\)-th plot must not have a house, so the number of ways is \(f[i] = g[i-1]\);
- If the \((i+1)\)-th plot does not have a house, then the \(i\)-th plot can either have a house or not, so the number of ways is \(g[i] = f[i-1] + g[i-1]\).
Finally, we square \(f[n-1] + g[n-1]\) modulo to get the answer.
The time complexity is \(O(n)\), and the space complexity is \(O(n)\). Where \(n\) is the length of the street.
1 2 3 4 5 6 7 8 9 10 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|