comments | difficulty | edit_url | tags | ||
---|---|---|---|---|---|
true |
Medium |
|
You are given an integer n
representing the number of playing cards you have. A house of cards meets the following conditions:
- A house of cards consists of one or more rows of triangles and horizontal cards.
- Triangles are created by leaning two cards against each other.
- One card must be placed horizontally between all adjacent triangles in a row.
- Any triangle on a row higher than the first must be placed on a horizontal card from the previous row.
- Each triangle is placed in the leftmost available spot in the row.
Return the number of distinct house of cards you can build using all n
cards. Two houses of cards are considered distinct if there exists a row where the two houses contain a different number of cards.
Example 1:
Input: n = 16 Output: 2 Explanation: The two valid houses of cards are shown. The third house of cards in the diagram is not valid because the rightmost triangle on the top row is not placed on top of a horizontal card.
Example 2:
Input: n = 2 Output: 1 Explanation: The one valid house of cards is shown.
Example 3:
Input: n = 4 Output: 0 Explanation: The three houses of cards in the diagram are not valid. The first house of cards needs a horizontal card placed between the two triangles. The second house of cards uses 5 cards. The third house of cards uses 2 cards.
Constraints:
1 <= n <= 500
We notice that the number of cards in each layer is
We design a function
The execution logic of the function
- If
$3 \times k + 2 \gt n$ , then the current layer cannot place any cards, return$0$ ; - If
$3 \times k + 2 = n$ , then the current layer can place cards, and after placing them, the entire house of cards is completed, return$1$ ; - Otherwise, we can choose not to place cards or to place cards. If we choose not to place cards, the remaining number of cards does not change, and the number of layers increases by
$1$ , i.e.,$\text{dfs}(n, k + 1)$ . If we choose to place cards, the remaining number of cards decreases by$3 \times k + 2$ , and the number of layers increases by$1$ , i.e.,$\text{dfs}(n - (3 \times k + 2), k + 1)$ . The sum of these two cases is the answer.
During the process, we can use memoization to avoid repeated calculations.
The time complexity is
class Solution:
def houseOfCards(self, n: int) -> int:
@cache
def dfs(n: int, k: int) -> int:
x = 3 * k + 2
if x > n:
return 0
if x == n:
return 1
return dfs(n - x, k + 1) + dfs(n, k + 1)
return dfs(n, 0)
class Solution {
private Integer[][] f;
public int houseOfCards(int n) {
f = new Integer[n + 1][n / 3];
return dfs(n, 0);
}
private int dfs(int n, int k) {
int x = 3 * k + 2;
if (x > n) {
return 0;
}
if (x == n) {
return 1;
}
if (f[n][k] != null) {
return f[n][k];
}
return f[n][k] = dfs(n - x, k + 1) + dfs(n, k + 1);
}
}
class Solution {
public:
int houseOfCards(int n) {
int f[n + 1][n / 3 + 1];
memset(f, -1, sizeof(f));
auto dfs = [&](this auto&& dfs, int n, int k) -> int {
int x = 3 * k + 2;
if (x > n) {
return 0;
}
if (x == n) {
return 1;
}
if (f[n][k] != -1) {
return f[n][k];
}
return f[n][k] = dfs(n - x, k + 1) + dfs(n, k + 1);
};
return dfs(n, 0);
}
};
func houseOfCards(n int) int {
f := make([][]int, n+1)
for i := range f {
f[i] = make([]int, n/3+1)
for j := range f[i] {
f[i][j] = -1
}
}
var dfs func(n, k int) int
dfs = func(n, k int) int {
x := 3*k + 2
if x > n {
return 0
}
if x == n {
return 1
}
if f[n][k] == -1 {
f[n][k] = dfs(n-x, k+1) + dfs(n, k+1)
}
return f[n][k]
}
return dfs(n, 0)
}
function houseOfCards(n: number): number {
const f: number[][] = Array(n + 1)
.fill(0)
.map(() => Array(Math.floor(n / 3) + 1).fill(-1));
const dfs = (n: number, k: number): number => {
const x = k * 3 + 2;
if (x > n) {
return 0;
}
if (x === n) {
return 1;
}
if (f[n][k] === -1) {
f[n][k] = dfs(n - x, k + 1) + dfs(n, k + 1);
}
return f[n][k];
};
return dfs(n, 0);
}