forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-watch_1_AC.cpp
54 lines (50 loc) · 1.23 KB
/
binary-watch_1_AC.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
// The code could be cleaner.
#include <cstdio>
using std::sprintf;
class Solution {
public:
Solution() {
int i;
table.resize(6);
for (i = 0; i < 60; ++i) {
table[countOnes(i)].push_back(i);
}
}
vector<string> readBinaryWatch(int num) {
int i, j, k;
int n1, n2;
char buf[10];
vector<string> res;
for (i = 0; i <= num; ++i) {
if (i > 4 || num - i > 5) {
// At most 4 '1's for 24 and 5 '1's for 60.
continue;
}
n1 = table[i].size();
n2 = table[num - i].size();
for (j = 0; j < n1; ++j) {
if (table[i][j] >= 12) {
continue;
}
for (k = 0; k < n2; ++k) {
sprintf(buf, "%d:%02d", table[i][j], table[num - i][k]);
res.push_back(string(buf));
}
}
}
return res;
}
~Solution() {
table.clear();
}
private:
vector<vector<int>> table;
int countOnes(int x) {
int cnt = 0;
while (x != 0) {
x &= x - 1;
++cnt;
}
return cnt;
}
};