차곡차곡

[SWEA/Java] SW Expert Academy 1218번 - 괄호 짝짓기 본문

CS/Algorithm

[SWEA/Java] SW Expert Academy 1218번 - 괄호 짝짓기

sohy 2023. 8. 4. 17:20

SW Expert Academy #1218 괄호 짝짓기

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

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 이용해서 구현

Comments