티스토리 뷰
사실 크게 어려운 문제는 아닙니다만, 여러 후보군 중에서 몇가지만을 선택하는 방법을 모르는 경우에는
조금 난해할 수 있습니다. 이 문제에서 핵심인 K개의 치킨집이 있을 때 이중 M개만을 선택하고 다른 치킨집들을
모두 폐업시켜야 하는 것입니다. M 개중에 K개를 선택하는 방법은 DFS를 활용하여 구현할 수 있습니다.
[소스 코드]
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.LinkedList; import java.util.List; import java.util.PriorityQueue; import java.util.Queue; import java.util.StringTokenizer; public class Main { public static int N, M, ans = Integer.MAX_VALUE; public static int[][] map; public static List<Node> houses; public static List<Node> chickens; public static boolean[] selected; 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 Exception { StringTokenizer st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken()); M = Integer.parseInt(st.nextToken()); map = new int[N][N]; houses = new ArrayList<Node>(); chickens = new ArrayList<Node>(); for (int i = 0; i < N; i++) { st = new StringTokenizer(br.readLine()); for (int j = 0; j < N; j++) { map[i][j] = Integer.parseInt(st.nextToken()); if (map[i][j] == 1) houses.add(new Node(i, j)); else if (map[i][j] == 2) chickens.add(new Node(i, j)); } } selected = new boolean[chickens.size() + 1]; dfs(0, 0); System.out.println(ans); } public static void dfs(int depth, int numOfSelect) { if (depth > chickens.size()) return; if (numOfSelect == M) { int sumOfDist = 0; for (int i = 0; i < houses.size(); i++) { int dist = Integer.MAX_VALUE; for (int j = 0; j < chickens.size(); j++) { if (selected[j]) { Node house = houses.get(i); Node chicken = chickens.get(j); dist = Math.min(dist, Math.abs(house.row - chicken.row) + Math.abs(house.col - chicken.col)); } } sumOfDist += dist; } ans = Math.min(ans, sumOfDist); return; } selected[depth] = true; dfs(depth + 1, numOfSelect + 1); selected[depth] = false; dfs(depth + 1, numOfSelect); } public static boolean isBoundary(int row, int col) { return (row >= 0 && row < N) && (col >= 0 && col < N); } } class Node { int row; int col; public Node(int row, int col) { this.row = row; this.col = col; } } | cs |
'알고리즘 문제 > 백준(BOJ)' 카테고리의 다른 글
[백준 14888번] 연산자 끼워넣기 :: 늦깎이 IT (0) | 2019.03.12 |
---|---|
[백준 14889번] 스타트와 링크 :: 늦깎이 IT (0) | 2019.03.09 |
[백준 14499번] 주사위 굴리기 :: 늦깎이 IT (0) | 2019.03.08 |
[백준 14500번] 테트로미노 :: 늦깎이 IT (0) | 2019.03.07 |
[백준 16234번] 인구 이동 :: 늦깎이 IT (0) | 2019.03.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 알고스팟
- 최대힙
- 14888
- 배열
- SWEA
- 힙정렬
- 우선순위 큐
- 시뮬레이션
- 리스트
- 자바
- 중간값
- 나무 재테크
- 큐
- 구슬 탈출2
- 브루트포스
- 삼성
- BFS
- 구현
- 백준
- 정렬
- 탐색
- 최소힙
- 영역 구하기
- 알고리즘
- 트리
- DFS
- 탈주범 검거
- 힙
- 연산자 끼워넣기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함