-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLC_32_LongestValidParentheses.cpp
113 lines (91 loc) · 2.36 KB
/
LC_32_LongestValidParentheses.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
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
111
112
113
/*
https://leetcode.com/problems/longest-valid-parentheses/
32. Longest Valid Parentheses
*/
class Solution {
public:
int longestValidParentheses_1(string s) {
if(s.empty())
return 0;
int len=0, curLen=0;
stack<int> st;
for(char ch: s)
{
if(ch == '(')
{
st.push(curLen);
curLen = 0;
}
else if(ch == ')' and !st.empty())
{
curLen += 2 + st.top(); st.pop();
len = max(len, curLen);
}
else //if(ch == ')' and st.empty())
{
curLen = 0;
}
}
return len;
}//end
int longestValidParentheses_2(string s) {
if(s.empty())
return 0;
vector<int> stack;
int maxLen=0;
stack.push_back(-1);
for(int i=0; i<s.length(); i++)
{
if(s[i] == '(')
stack.push_back(i);
else
{
stack.pop_back();
if(stack.empty())
stack.push_back(i);
maxLen = max(maxLen, i-stack.back());
}
}
return maxLen;
}
int longestValidParentheses(string s) {
if(s.empty())
return 0;
int maxLen=0;
int left=0, right=0;
for(int i=0; i<s.length(); i++)
{
if(s[i] == '(')
left++;
else
right++;
if(right > left)
{
left = right = 0;
continue;
}
if(left == right)
{
maxLen = max(maxLen, left+right);
}
}
left=0, right=0;
for(int i=s.length()-1; i>=0; i--)
{
if(s[i] == '(')
left++;
else
right++;
if(right < left)
{
left = right = 0;
continue;
}
if(left == right)
{
maxLen = max(maxLen, left+right);
}
}
return maxLen;
}
};