forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths0032_longest_valid_parentheses.rs
95 lines (88 loc) · 2.67 KB
/
s0032_longest_valid_parentheses.rs
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
/**
* [32] 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: "(()"
* Output: 2
* Explanation: The longest valid parentheses substring is "()"
*
*
* Example 2:
*
*
* Input: ")()())"
* Output: 4
* Explanation: The longest valid parentheses substring is "()()"
*
*
*/
pub struct Solution {}
// problem: https://leetcode.com/problems/longest-valid-parentheses/
// discuss: https://leetcode.com/problems/longest-valid-parentheses/discuss/?currentPage=1&orderBy=most_votes&query=
// submission codes start here
// time: O(N) space: O(1)
impl Solution {
pub fn longest_valid_parentheses(s: String) -> i32 {
let mut seq: Vec<char> = s.chars().collect();
let forward_max = Solution::longest(&seq, '(');
seq.reverse();
let backward_max = Solution::longest(&seq, ')');
i32::max(forward_max, backward_max)
}
fn longest(seq: &Vec<char>, plus_char: char) -> i32 {
let mut stack = 0;
let mut max_len = 0;
let (mut i, mut j) = (0_usize, 0_usize);
while j < seq.len() {
if seq[j] == plus_char {
stack += 1;
} else {
// stack exhausted, shift over
if stack < 1 {
i = j + 1;
} else {
stack -= 1;
if stack == 0 {
max_len = i32::max(max_len, (j - i + 1) as i32);
}
}
}
j += 1;
}
max_len
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_32() {
assert_eq!(Solution::longest_valid_parentheses(")()())".to_string()), 4);
assert_eq!(Solution::longest_valid_parentheses(")(".to_string()), 0);
assert_eq!(Solution::longest_valid_parentheses("(()".to_string()), 2);
assert_eq!(
Solution::longest_valid_parentheses("(((((()()".to_string()),
4
);
assert_eq!(
Solution::longest_valid_parentheses("((((((((()))".to_string()),
6
);
assert_eq!(Solution::longest_valid_parentheses("()".to_string()), 2);
assert_eq!(Solution::longest_valid_parentheses("()(()".to_string()), 2);
assert_eq!(
Solution::longest_valid_parentheses(")()(((())))(".to_string()),
10
);
assert_eq!(
Solution::longest_valid_parentheses("(()(((()".to_string()),
2
);
assert_eq!(Solution::longest_valid_parentheses("".to_string()), 0);
}
}