-
[BOJ] 1541 잃어버린 괄호ALGORITHM/BOJ 2022. 7. 4. 21:30
https://www.acmicpc.net/problem/1541
2022-07-04
1234567891011121314151617181920212223242526272829303132import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.LinkedList;import java.util.Queue;import java.util.StringTokenizer;public class Main1541 {public static void main(String[] args) throws IOException {BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));StringTokenizer st = new StringTokenizer(bf.readLine());String[] str = st.nextToken().split("-");Queue<Integer> s = new LinkedList<>();for(int i = 0; i < str.length; i++) {if(str[i].contains("+")) {String[] tmp = str[i].split("\\+");int num = 0;for(int j = 0; j < tmp.length; j++) {if(!tmp[j].equals("+")) {num += Integer.parseInt(tmp[j]);}}s.offer(num);} else s.offer(Integer.parseInt(str[i]));}int answer = s.poll();while(!s.isEmpty()) answer -= s.poll();System.out.println(answer);}}cs #문제풀이
1) " - " 를 기준으로 split 하고
2) 돌면서 " + " 를 포함하고 있는 문자열을 발견하면 다 더해서 queue에 넣어놓고
3) " + " 없으면 그냥 queue에 포함
4) 제일 앞 숫자 poll하고, 그 뒤에 while문 돌면서 모든 숫자 빼기
'ALGORITHM > BOJ' 카테고리의 다른 글
[백준] 17298 오큰수 (0) 2022.07.25 [백준] 3273 두 수의 합 (0) 2022.07.25 [BOJ] 11779 최소비용 구하기2 (0) 2022.06.29 [BOJ] 10282 해킹 (0) 2022.06.27 [BOJ] 14938 서강그라운드 (0) 2022.06.26