-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlec_13.cpp
More file actions
104 lines (79 loc) Β· 2.5 KB
/
Copy pathlec_13.cpp
File metadata and controls
104 lines (79 loc) Β· 2.5 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
class Solution {
public:
vector<int> majorityElement(vector<int>& v) {
int n = v.size();
vector<int> ls;
map<int , int>mpp;
int mini = int (n/3) +1;
for(int i = 0 ;i<n;i++){
mpp[v[i]]++;
if(mpp[v[i]] == mini){
ls.push_back(v[i]);
}
if(ls.size() ==2) break;
}
return ls;
}
};
// alternative solution
class Solution {
public:
vector<int> majorityElement(vector<int>& v) {
int n = v.size(); //size of the array
vector<int> ls; // list of answers
for (int i = 0; i < n; i++) {
//selected element is v[i]:
// Checking if v[i] is not already
// a part of the answer:
if (ls.size() == 0 || ls[0] != v[i]) {
int cnt = 0;
for (int j = 0; j < n; j++) {
// counting the frequency of v[i]
if (v[j] == v[i]) {
cnt++;
}
}
// check if frquency is greater than n/3:
if (cnt > (n / 3))
ls.push_back(v[i]);
}
if (ls.size() == 2) break;
}
return ls;
}
};
// alternative solution
class Solution {
public:
vector<int> majorityElement(vector<int>& v) {
int n = v.size();
int cnt1 = 0 , cnt2 = 0 ;
int el1 = INT_MIN;
int el2 = INT_MIN;
for(int i = 0 ; i<n;i++){
if(cnt1 == 0 && el2!= v[i]){
cnt1 =1 ;
el1 = v[i];
}
else if(cnt2 == 0 && el1 != v[i]){
cnt2 =1 ;
el2 = v[i];
}
else if(v[i] == el1) cnt1++;
else if(v[i] == el2) cnt2++;
else{
cnt1 -- , cnt2 -- ;
}
}
vector<int>ls;
cnt1 = 0 , cnt2 = 0 ;
for(int i = 0 ;i<n;i++){
if(v[i] == el1) cnt1++;
if(v[i] == el2) cnt2++;
}
int mini = int(n/3) +1;
if(cnt1>=mini) ls.push_back(el1);
if(cnt2 >= mini) ls.push_back(el2);
return ls;
}
};