-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClimbingStairs70.cs
74 lines (53 loc) · 1.48 KB
/
ClimbingStairs70.cs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
namespace LeetCode;
public class ClimbingStairs70
{
// N Steps to the top
// Take 1 or 2 steps
public static int ClimbStairs(int n)
{
Node node = new Node();
return node.CountStepsCaching(0,n);
// return node.Count;
}
}
public class Node
{
private int _count = 0;
public int Count
{
get => _count;
private set => _count = value;
}
public void CountStepsBruteForce(int steps, int stepsRemaing)
{
stepsRemaing -= steps;
if (stepsRemaing > 0 ) CountStepsBruteForce(1, stepsRemaing);
if (stepsRemaing > 1) CountStepsBruteForce(2, stepsRemaing);
if (stepsRemaing == 0)
{
Count++;
}
}
public Dictionary<int, int> StepCounts;
public Node()
{
StepCounts = new Dictionary<int, int>();
}
public int CountStepsCaching(int steps, int stepsRemaing)
{
int stepsAfterThis = stepsRemaing - steps;
if (stepsAfterThis == 0) return 1;
if (StepCounts.TryGetValue(stepsAfterThis, out int result)) return result;
int leaves1=0, leaves2=0;
if (stepsRemaing > 0)
{
leaves1 = CountStepsCaching(1, stepsAfterThis);
}
if (stepsRemaing > 1)
{
leaves2 = CountStepsCaching(2, stepsAfterThis);
}
StepCounts.Add(stepsAfterThis, leaves1+leaves2);
return leaves1+leaves2;
}
}