-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathday-140.cpp
73 lines (54 loc) · 1.87 KB
/
day-140.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
/*
Numbers With Same Consecutive Differences
Return all non-negative integers of length N such that the absolute difference
between every two consecutive digits is K.
Note that every number in the answer must not have leading zeros except for the
number 0 itself. For example, 01 has one leading zero and is invalid, but 0 is
valid.
You may return the answer in any order.
Example 1:
Input: N = 3, K = 7
Output: [181,292,707,818,929]
Explanation: Note that 070 is not a valid number, because it has leading zeroes.
Example 2:
Input: N = 2, K = 1
Output: [10,12,21,23,32,34,43,45,54,56,65,67,76,78,87,89,98]
Note:
1 <= N <= 9
0 <= K <= 9
*/
// Simple DFS based solution
// Nice trick of getting lastDigit with % and not passing, seperate param to
// function
class Solution {
public:
void numsSameConsecDiffDFS(vector<int>& answer, int N, int K,
int currentNumber) {
if (N == 0) {
answer.push_back(currentNumber);
return;
}
int lastDig = currentNumber % 10;
int nextNumAdd = lastDig + K;
int nextNumSub = lastDig - K;
if (nextNumAdd == nextNumSub)
numsSameConsecDiffDFS(answer, N - 1, K,
currentNumber * 10 + nextNumAdd);
else {
if (nextNumAdd < 10)
numsSameConsecDiffDFS(answer, N - 1, K,
currentNumber * 10 + nextNumAdd);
if (nextNumSub > -1)
numsSameConsecDiffDFS(answer, N - 1, K,
currentNumber * 10 + nextNumSub);
}
}
vector<int> numsSameConsecDiff(int N, int K) {
vector<int> answer;
if (N == 1) answer.push_back(0);
for (int dig = 1; dig < 10; dig++) {
numsSameConsecDiffDFS(answer, N - 1, K, dig);
}
return answer;
}
};