-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdaily123.cpp
More file actions
110 lines (83 loc) · 2.18 KB
/
Copy pathdaily123.cpp
File metadata and controls
110 lines (83 loc) · 2.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Solution 1
class Solution {
public:
int countMaxOrSubsets(vector<int>& nums) {
/*
sliding window? max OR value kept
note:
max bitwise OR is bitwose OR of whole array
n^something:
test every subset to see which ones can sum to the max bitwise or
recursive solution (n^2?):
backtrack
*/
max_ = nums.front();
for (auto i = 1; i < nums.size(); ++i) {
max_ |= nums[i];
}
nums_ = nums;
std::vector seen(nums.size(), 0);
findSets(0, 0, seen);
return arrays;
}
private:
void findSets(int total, int index, std::vector<int>& seen) {
if (total == max_) {
arrays++;
}
for (auto i = index; i < nums_.size(); ++i) {
if (!seen[i]) {
seen[i] = 1;
findSets(total | nums_[i], i + 1, seen);
seen[i] = 0;
}
}
}
int arrays = 0;
int max_;
std::vector<int> nums_;
};
// What I did wrong before the solution:
/*
class Solution {
public:
int countMaxOrSubsets(vector<int>& nums) {
/\*
sliding window? max OR value kept
note:
max bitwise OR is bitwose OR of whole array
n^something:
test every subset to see which ones can sum to the max bitwise or
recursive solution (n^2?):
backtrack
/\*
max_ = nums.front();
for (auto i = 1; i < nums.size(); ++i) {
max_ ^= nums[i];
}
nums_ = nums;
for (auto i = 0; i < nums.size(); ++i) {
std::vector seen(nums.size(), 0);
findSets(nums[i], i, seen);
}
return arrays;
}
private:
void findSets(int total, int index, std::vector<int>& seen) {
if (total == max_) {
arrays++;
return;
}
seen[index] = 1;
for (auto i = 0; i < nums_.size(); ++i) {
if (!seen[i]) {
findSets(total ^ nums_[i], i, seen);
}
}
seen[index] = 0;
}
int arrays = 0;
int max_;
std::vector<int> nums_;
};
*/