forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLongest valid parentheses
54 lines (53 loc) · 1.02 KB
/
Longest valid parentheses
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
class Solution {
public:
int longestValidParentheses(string s)
{
int maximum=0;
int i;
int open=0,close=0;
int n=s.size();
for(i=0;i<n;i++)
{
if(s[i]=='(')
{
open++;
}
else
{
close++;
}
if(open==close)
{
maximum=max(maximum,close*2);
}
else if(close>open)
{
open=0;
close=0;
}
}
open=0;
close=0;
for(i=n-1;i>=0;i--)
{
if(s[i]=='(')
{
open++;
}
else
{
close++;
}
if(open==close)
{
maximum=max(maximum,close*2);
}
else if(close<open)
{
open=0;
close=0;
}
}
return maximum;
}
};