문제 출처: https://www.acmicpc.net/problem/2504
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 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Stack; public class algo7_2504_parentheses_value { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader reader= new BufferedReader(new InputStreamReader(System.in)); String input = reader.readLine(); int value = 0; Stack<String> stack = new Stack<>(); stack.push(String.valueOf(input.charAt(0))); for(int i=1 ; i<input.length() ; i++){ String str = String.valueOf(input.charAt(i)); if(str.equals("(") || str.equals("[")){ // 여는 괄호일 때 스택에 넣음 stack.push(str); } else if(str.equals(")")){ // 닫는 괄호가 ')' 일때 if(stack.peek().equals("(")){ // 중첩된 괄호가 아니라면 스택에 '2'를 넣는다. stack.pop(); stack.push("2"); } else{ int tmp = 0; while (!stack.isEmpty()) { // 여는 괄호가 나올 때까지 더하고, 여는 괄호가 나오면 *2 String pop = stack.pop(); if(pop.equals(")") || pop.equals("[") || pop.equals("]")){ System.out.println(0); return; } if(pop.equals("(")){ stack.push(String.valueOf(tmp*2)); break; } tmp += Integer.parseInt(pop); } if(stack.isEmpty()){ System.out.println(0); return; } } } else if(str.equals("]")){ // 닫는 괄호가 ']' 일때 if(stack.peek().equals("[")){ // 중첩된 괄호가 아니라면 스택에 '3'를 넣는다. stack.pop(); stack.push("3"); } else{ int tmp = 0; while (!stack.isEmpty()) { // 여는 괄호가 나올 때까지 더하고, 여는 괄호가 나오면 *3 String pop = stack.pop(); if(pop.equals("(") || pop.equals(")") || pop.equals("]")){ System.out.println(0); return; } if(pop.equals("[")){ stack.push(String.valueOf(tmp*3)); break; } tmp += Integer.parseInt(pop); } if(stack.isEmpty()){ // 괄호 짝이 맞지 않음 System.out.println(0); return; } } } else { // 괄호가 아닌 값이 들어옴 System.out.println(0); return; } } while(!stack.isEmpty()){ // 스택의 있는 값을 모두 더한다. String str = stack.pop(); if(str.equals("(") || str.equals(")") || str.equals("[") || str.equals("]")){ System.out.println(0); return; } value += Integer.parseInt(str); } System.out.println(value); // 결과 출력 } } | cs |
'Algorithm' 카테고리의 다른 글
백준 1992번: 쿼드트리 (0) | 2018.08.08 |
---|---|
Divide and Conquer (분할정복법) (0) | 2018.08.07 |
백준 1874번: 스택 수열 (0) | 2018.07.23 |
백준 10799번: 쇠막대기 (0) | 2018.07.20 |
백준 9012번: 괄호 (0) | 2018.07.18 |