-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path76_ClimbingStairs.cpp
73 lines (61 loc) · 1.14 KB
/
76_ClimbingStairs.cpp
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
#include<string>
#include <set>
#include<vector>
#include<iostream>
#include<map>
#include<stack>
#include <unordered_set>
#include <algorithm> // std::min_element, std::max_element
using namespace std;
int f(int n, vector<int>&arr)
{
if (n == 0 || n == 1) return 1;
if (arr[n] != 0) return arr[n];
else {
arr[n] = f(n - 1, arr) + f(n - 2, arr);
return arr[n];
}
}
bool isHappy(int n)
{
string s = to_string(n);
int sum = 0;
while (1)
{
for (int i = 0; i < s.length(); i++)
{
int a = s[i] - '0';
sum += a * a;
}
if (sum == 1)
{
return true;
}
else if (sum > 1 && sum <= 9)
{
break;
}
else if (sum > 9)
{
s = to_string(sum);
sum = 0;
}
}
return false;
}
int climbStairs(int n)
{
//* p = (int*)malloc(sizeof(int) * (n + 1));
vector<int> p(n + 1, 0);
int res, i;
if (n == 0 || n == 1) p[n] = 1; //Base condition
res = f(n, p);
//free(p);
return res;
}
int main76()
{
//int count = climbStairs(5);
bool bResult = isHappy(1111111);
return 0;
}