-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy path03. Longest Valid Parentheses.cpp
62 lines (53 loc) · 1.05 KB
/
03. Longest Valid Parentheses.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
/*
Longest Valid Parentheses
=========================
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
Example 1:
Input: s = "(()"
Output: 2
Explanation: The longest valid parentheses substring is "()".
Example 2:
Input: s = ")()())"
Output: 4
Explanation: The longest valid parentheses substring is "()()".
Example 3:
Input: s = ""
Output: 0
Constraints:
0 <= s.length <= 3 * 104
s[i] is '(', or ')'.
*/
class Solution
{
public:
int longestValidParentheses(string s)
{
int ans = 0;
stack<char> sc;
stack<int> si;
si.push(-1);
for (int i = 0; i < s.size(); ++i)
{
char ch = s[i];
if (ch == ')')
{
if (sc.size() && sc.top() == '(')
{
sc.pop();
si.pop();
int curr = i - si.top();
// si.push(i);
ans = max(ans, curr);
}
else
si.push(i);
}
else
{
sc.push(ch);
si.push(i);
}
}
return ans;
}
};