forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_921.java
55 lines (53 loc) · 1.46 KB
/
_921.java
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
package com.fishercoder.solutions;
import java.util.Stack;
/**
* 921. Minimum Add to Make Parentheses Valid
*
* Given a string S of '(' and ')' parentheses, we add the minimum number of parentheses ( '(' or ')', and in any positions )
* so that the resulting parentheses string is valid.
*
* Formally, a parentheses string is valid if and only if:
* It is the empty string, or
* It can be written as AB (A concatenated with B), where A and B are valid strings, or
* It can be written as (A), where A is a valid string.
* Given a parentheses string, return the minimum number of parentheses we must add to make the resulting string valid.
*
* Example 1:
* Input: "())"
* Output: 1
*
* Example 2:
* Input: "((("
* Output: 3
*
* Example 3:
* Input: "()"
* Output: 0
*
* Example 4:
* Input: "()))(("
* Output: 4
*
* Note:
* S.length <= 1000
* S only consists of '(' and ')' characters.
* */
public class _921 {
public static class Solution1 {
public int minAddToMakeValid(String S) {
Stack<Character> stack = new Stack<>();
for (char c : S.toCharArray()) {
if (c == ')') {
if (!stack.isEmpty() && stack.peek() == '(') {
stack.pop();
} else {
stack.push(c);
}
} else {
stack.push(c);
}
}
return stack.size();
}
}
}