1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| class Solution {
public int numWays(int steps, int arrLen) {
int maxPos = Math.min(arrLen, steps);
long[][] dp = new long[steps + 1][maxPos + 1];
dp[1][0]=1;
if(arrLen > 1) dp[1][1]=1;
for (int step = 2; step <= steps; step++) {
for (int pos = 0; pos < maxPos; pos++) {
// STAY + RIGHT + LEFT
dp[step][pos] = (dp[step - 1][pos] + dp[step - 1][pos + 1] + (pos > 0 ? dp[step - 1][pos - 1]: 0)) % 1_000_000_007L;
}
}
// for (int step = 0; step < steps; step++) {
// System.out.println(Arrays.toString(dp[step]));
// }
return (int) dp[steps][0];
}
// TLE
int count = 0;
public int numWays2(int steps, int arrLen) {
backtrack(steps, 0, 0, 0, arrLen);
return count;
}
void backtrack(int steps, int pos, int opened, int closed, int arrLen) {
if (pos < 0 || pos == arrLen) {
return;
}
if (opened < closed) {
return;
}
if (steps == 0) {
if (pos == 0) {
count = count + 1;
count = count % 1_000_000_007;
}
return;
}
// right
backtrack(steps - 1, pos + 1, opened + 1, closed, arrLen);
// stay
backtrack(steps - 1, pos, opened, closed, arrLen);
// left
backtrack(steps - 1, pos - 1, opened, closed - 1, arrLen);
}
}
|