-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path32. Longest Valid Parentheses
75 lines (66 loc) · 1.69 KB
/
32. 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
class Solution {
public int longestValidParentheses(String s) {
Stack<Integer> st=new Stack<>();
st.push(-1);
int max=0;
for(int i=0;i<s.length();i++){
char c = s.charAt(i);
if(c='('){
st.push(i);
}
else{
st.pop();
if(st.isEmpty()){
st.push(i);
}
else{
int len = i - st.peek();
max = Math.max(max,len);
}
}
}
return max;
}
}
class Solution {
public int longestValidParentheses(String s) {
int open = 0 , close = 0;
int max = 0;
// 0 -- n
for(int i=0;i<s.length();i++){
char c = s.charAt(i);
if(c == '('){
open++;
}
else{
close++;
}
if(open == close){
int len = open + close;
max = Math.max(max,len);
}
else if(close > open ){
open = close = 0;
}
}
open = close = 0;
// n -- 0
for(int i= s.length()-1; i>=0 ;i--){
char c = s.charAt(i);
if(c == '('){
open++;
}
else{
close++;
}
if(open == close){
int len = open + close;
max = Math.max(max,len);
}
else if(open > close ){
open = close = 0;
}
}
return max;
}
}