-
Notifications
You must be signed in to change notification settings - Fork 3
/
768.cpp
60 lines (59 loc) · 1.57 KB
/
768.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
class Solution {
public:
int maxChunksToSorted(vector<int>& arr) {
stack<int> st; // monotonic increasing
for (auto num : arr) {
if (st.empty() || num >= st.top()) {
st.push(num);
}
else {
int maxVal = st.top();
st.pop();
while (!st.empty() && num < st.top()) st.pop();
st.push(maxVal);
}
}
return st.size();
}
};
// class Counter {
// private:
// unordered_map<int, int> mp;
// int positive;
// int negative;
// public:
// Counter() {
// positive = 0;
// negative = 0;
// }
// void insert(int x) {
// if (mp[x] == -1) negative--;
// else if (mp[x] == 0) positive++;
// mp[x]++;
// }
// void remove(int x) {
// if (mp[x] == 1) positive--;
// else if (mp[x] == 0) negative++;
// mp[x]--;
// }
// bool isZero() {
// return (!positive) && (!negative);
// }
// };
// class Solution {
// public:
// int maxChunksToSorted(vector<int>& arr) {
// int n = arr.size();
// vector<int> sortedArr(n, 0);
// for (int i = 0; i < n; ++i) sortedArr[i] = arr[i];
// sort(sortedArr.begin(), sortedArr.end());
// int res = 0;
// Counter* counter = new Counter();
// for (int i = 0; i < n; ++i) {
// counter->insert(arr[i]);
// counter->remove(sortedArr[i]);
// if (counter->isZero()) res++;
// }
// return res;
// }
// };