일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- 백준 17451번
- 알고리즘
- 모각코
- 백준 1253번
- ubuntu
- 백준 15787번
- java_programming
- SQL
- Python
- 백준 1987
- 깃헙
- 명품자바
- HUFS 모각코 캠프
- SWEA 15612번
- 백준 2512번
- 백준 18310번
- react
- 자바
- javascript
- 백준 16918번
- 백준 3085번
- 그리디
- MySQL
- 다이나믹 프로그래밍
- 그래프
- 머신러닝과 딥러닝
- AWS
- 백준 1331번
- 다이나믹프로그래밍
Archives
- Today
- Total
차곡차곡
[SWEA/Java] SW Expert Academy 1218번 - 괄호 짝짓기 본문
SW Expert Academy #1218 괄호 짝짓기
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
for (int t = 1; t <= 10; t++) {
int len = Integer.parseInt(br.readLine()); // 문자열 길이
Stack<String> st = new Stack<String>();
int result = 1;
// 입력 받기
String line = br.readLine();
String ch;
for (int i = 0; i < len; i++) {
ch = String.valueOf(line.charAt(i));
if (ch.equals("{") || ch.equals("[") || ch.equals("(") || ch.equals("<")) {
st.add(ch);
} else if (ch.equals("}")) {
if (st.isEmpty() || !st.pop().equals("{")) {
result = 0;
break;
}
} else if (ch.equals("]")) {
if (st.isEmpty() || !st.pop().equals("[")) {
result = 0;
break;
}
} else if (ch.equals(")")) {
if (st.isEmpty() || !st.pop().equals("(")) {
result = 0;
break;
}
} else if (ch.equals(">")) {
if (st.isEmpty() || !st.pop().equals("<")) {
result = 0;
break;
}
}
}
System.out.println("#" + t + " " + result);
}
}
}
stack 이용해서 구현
'CS > Algorithm' 카테고리의 다른 글
[BOJ/Python, Java] 백준 24230번 - 트리 색칠하기 (0) | 2023.08.08 |
---|---|
[BOJ/Python] 백준 1325번 - 효율적인 해킹 (0) | 2023.08.08 |
[BOJ/Python, Java] 백준 2164번 - 카드2 (0) | 2023.08.04 |
[BOJ/Java] 백준 3040번 - 백설 공주와 일곱 난쟁이 (0) | 2023.08.04 |
[SWEA/Java] SW Expert Academy 2001번 - 파리 퇴치 (0) | 2023.08.03 |
Comments