forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.java
56 lines (52 loc) · 1.86 KB
/
4.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
56
import java.util.*;
class Solution {
// "균형잡힌 괄호 문자열"의 인덱스 반환
public int balancedIndex(String p) {
int count = 0; // 왼쪽 괄호의 개수
for (int i = 0; i < p.length(); i++) {
if (p.charAt(i) == '(') count += 1;
else count -= 1;
if (count == 0) return i;
}
return -1;
}
// "올바른 괄호 문자열"인지 판단
public boolean checkProper(String p) {
int count = 0; // 왼쪽 괄호의 개수
for (int i = 0; i < p.length(); i++) {
if (p.charAt(i) == '(') count += 1;
else {
if (count == 0) { // 쌍이 맞지 않는 경우에 false 반환
return false;
}
count -= 1;
}
}
return true; // 쌍이 맞는 경우에 true 반환
}
public String solution(String p) {
String answer = "";
if (p.equals("")) return answer;
int index = balancedIndex(p);
String u = p.substring(0, index + 1);
String v = p.substring(index + 1);
// "올바른 괄호 문자열"이면, v에 대해 함수를 수행한 결과를 붙여 반환
if (checkProper(u)) {
answer = u + solution(v);
}
// "올바른 괄호 문자열"이 아니라면 아래의 과정을 수행
else {
answer = "(";
answer += solution(v);
answer += ")";
u = u.substring(1, u.length() - 1); // 첫 번째와 마지막 문자를 제거
String temp = "";
for (int i = 0; i < u.length(); i++) {
if (u.charAt(i) == '(') temp += ")";
else temp += "(";
}
answer += temp;
}
return answer;
}
}