-
Notifications
You must be signed in to change notification settings - Fork 3
/
978.cpp
85 lines (84 loc) · 2.46 KB
/
978.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
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
class Solution {
public:
int maxTurbulenceSize(vector<int>& arr) {
int res = 1;
int inc = 1;
int dec = 1;
int n = arr.size();
for (int i = 0; i < n - 1; ++i) {
if (arr[i] > arr[i + 1]) {
dec = inc + 1;
inc = 1;
}
else if (arr[i] < arr[i + 1]) {
inc = dec + 1;
dec = 1;
}
else {
inc = 1;
dec = 1;
}
res = max(res, max(inc, dec));
}
return res;
}
};
class Solution {
public:
int maxTurbulenceSize(vector<int>& arr) {
int n = arr.size();
int index = 0;
int res = 1;
while (index + 1 < n) {
if (arr[index + 1] > arr[index]) {
int start = index;
int right = index + 1;
int sign = 1;
res = max(res, 2);
while (right + 1 < n) {
if (arr[right + 1] > arr[right] && sign == -1) {
right++;
res = max(res, right - start + 1);
sign = 1;
}
else if (arr[right + 1] < arr[right] && sign == 1) {
right++;
res = max(res, right - start + 1);
sign = -1;
}
else {
break;
}
}
index = right;
}
else if (arr[index + 1] < arr[index]) {
int start = index;
int right = index + 1;
int sign = -1;
res = max(res, 2);
while (right + 1 < n) {
if (arr[right + 1] > arr[right] && sign == -1) {
right++;
res = max(res, right - start + 1);
sign = 1;
}
else if (arr[right + 1] < arr[right] && sign == 1) {
right++;
res = max(res, right - start + 1);
sign = -1;
}
else {
break;
}
}
index = right;
}
else {
index++;
res = max(res, 1);
}
}
return res;
}
};