티스토리 뷰
[4008. [모의 SW 역량테스트] 숫자 만들기 URL]
이 문제는 백준의 연산자 끼워넣기 문제와 100% 같다.
2019/03/12 - [알고리즘 문제/백준(BOJ)] - [백준 14888번] 연산자 끼워넣기 (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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; import java.util.Stack; import java.util.StringTokenizer; public class Solution { public static int tCase, N, minVal, maxVal; public static int[] operator, operand; public static int[] dirX = new int[] { 0, 0, 1, -1 }; // 동서남북 public static int[] dirY = new int[] { 1, -1, 0, 0 }; public static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws NumberFormatException, IOException { tCase = Integer.parseInt(br.readLine()); for (int t = 1; t <= tCase; t++) { minVal = Integer.MAX_VALUE; maxVal = Integer.MIN_VALUE; N = Integer.parseInt(br.readLine()); operator = new int[4]; operand = new int[N]; StringTokenizer st = new StringTokenizer(br.readLine()); for (int i = 0; i < 4; i++) operator[i] = Integer.parseInt(st.nextToken()); st = new StringTokenizer(br.readLine()); for (int i = 0; i < N; i++) operand[i] = Integer.parseInt(st.nextToken()); dfs(1, operand[0]); System.out.println("#" + t + " " + (maxVal - minVal)); } } public static void dfs(int depth, int totalVal) { if (depth >= N) { maxVal = Math.max(maxVal, totalVal); minVal = Math.min(minVal, totalVal); return; } for (int i = 0; i < 4; i++) { if (operator[i] > 0) { operator[i] -= 1; switch (i) { case 0: dfs(depth + 1, totalVal + operand[depth]); break; case 1: dfs(depth + 1, totalVal - operand[depth]); break; case 2: dfs(depth + 1, totalVal * operand[depth]); break; case 3: dfs(depth + 1, totalVal / operand[depth]); break; } operator[i] += 1; } } } } | cs |
'알고리즘 문제 > SW Expert Academy' 카테고리의 다른 글
[SWEA 1953번] 탈주범 검거 :: 늦깎이 IT (0) | 2019.03.13 |
---|---|
[SWEA 4012번] 요리사 :: 늦깎이 IT (0) | 2019.03.12 |
[SWEA 5658번] 보물상자 비밀번호 :: 늦깎이 IT (0) | 2019.02.18 |
[SWEA 5656번] 벽돌 깨기 :: 늦깎이 IT (0) | 2019.02.18 |
[SWEA 1868번] 파핑파핑 지뢰찾기 :: 늦깎이 IT (0) | 2019.02.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 최대힙
- 우선순위 큐
- 알고스팟
- SWEA
- 트리
- 영역 구하기
- DFS
- 힙
- 정렬
- 브루트포스
- 리스트
- 알고리즘
- 구슬 탈출2
- BFS
- 14888
- 큐
- 연산자 끼워넣기
- 힙정렬
- 최소힙
- 나무 재테크
- 배열
- 탈주범 검거
- 자바
- 탐색
- 삼성
- 백준
- 시뮬레이션
- 중간값
- 구현
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함