-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfusingNumberII1088.cpp
More file actions
84 lines (65 loc) · 1.79 KB
/
ConfusingNumberII1088.cpp
File metadata and controls
84 lines (65 loc) · 1.79 KB
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
75
76
77
78
79
80
81
82
83
84
/*
A confusing number is a number that when rotated 180 degrees becomes a different number with each digit valid.
We can rotate digits of a number by 180 degrees to form new digits.
When 0, 1, 6, 8, and 9 are rotated 180 degrees, they become 0, 1, 9, 8, and 6 respectively.
When 2, 3, 4, 5, and 7 are rotated 180 degrees, they become invalid.
Note that after rotating a number, we can ignore leading zeros.
For example, after rotating 8000, we have 0008 which is considered as just 8.
Given an integer n, return the number of confusing numbers in the inclusive range [1, n].
Example 1:
Input: n = 20
Output: 6
Explanation: The confusing numbers are [6,9,10,16,18,19].
6 converts to 9.
9 converts to 6.
10 converts to 01 which is just 1.
16 converts to 91.
18 converts to 81.
19 converts to 61.
Example 2:
Input: n = 100
Output: 19
Explanation: The confusing numbers are [6,9,10,16,18,19,60,61,66,68,80,81,86,89,90,91,98,99,100].
Constraints:
1 <= n <= 109
*/
const int CFS[] = {0, 1, 6, 8, 9};
const int ROT[] = {0, 1, 2, 3, 4, 5, 9, 7, 8, 6};
class Solution {
public:
int x;
int res;
int confusingNumberII(int n) {
x = n;
res = 0;
for (int i = 1; i < 5; i++) {
attempt(1, CFS[i]);
}
if (x == 1'000'000'000) {
res++;
}
return res;
}
void attempt(int p, int val) {
if (val > x) {
return;
}
if (rotate(val) != val) {
res++;
}
if (p == 9) {
return;
}
for (int d : CFS) {
attempt(p + 1, val*10 + d);
}
}
int rotate(int num) {
int res = 0;
while (num > 0) {
res = res*10 + ROT[num % 10];
num /= 10;
}
return res;
}
};