Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Gradle
- spring cloud
- 스택
- 달팽이
- ZuulFilter
- 플로이드 와샬
- 스프링 시큐리티
- 백트래킹
- 서비스 디스커버리
- 도커
- 완전 탐색
- spring boot
- 유레카
- 이분 탐색
- 구현
- 이분 매칭
- dp
- docker-compose
- Logback
- 비트마스킹
- Zuul
- BFS
- 다익스트라
- Spring Cloud Config
- 메모이제이션
- 구간 트리
- Java
- 주울
- 게이트웨이
- 트리
Archives
- Today
- Total
Hello, Freakin world!
[백준 15686번] 치킨 배달 본문
문제 풀이
DFS를 이용한 조합탐색 + 비트마스킹을 이용해 풀었습니다.
선택하는 치킨집의 범위가 최대 13으로 작기 때문에 조합 탐색으로 구한 각각의 상태정보를 비트에 저장한 뒤, 각각의 선택한 치킨집 상태정보를 이용해 최소 치킨거리의 합을 계산합니다. 그리고 그 값들 중 최소값을 찾아냅니다.
...
/*
백준 15696번 - 치킨 배달
https://www.acmicpc.net/problem/15686
*/
public class Main {
static int[][] map;
static int n,m, INF=987654321;
static List<Point> chickenPlaces = new ArrayList<>();
static List<Point> houses = new ArrayList<>();
static Set<Integer> selectedStatusSet = new HashSet<>();
public static void main(String[] args) throws IOException {
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
n = Integer.parseInt(st.nextToken()); m = Integer.parseInt(st.nextToken());
map = new int[n+1][n+1];
for (int i = 1; i <= n; i++) {
st = new StringTokenizer(reader.readLine());
for (int j = 1; j <= n; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if(map[i][j] == 1) houses.add(new Point(i,j));
if(map[i][j] == 2) chickenPlaces.add(new Point(i,j));
}
}
selectChickenPlace(0,0,0);
int ret = selectedStatusSet.stream()
.mapToInt(status -> houses.stream()
.mapToInt(house -> getShortestDistance(house, status))
.sum())
.min().getAsInt();
System.out.println(ret);
}
private static void selectChickenPlace(int start, int count, int selected) {
if(count == m) selectedStatusSet.add(selected);
if(start == chickenPlaces.size()) return;
for (int i = start; i < chickenPlaces.size(); i++) {
//선택한 경우
selectChickenPlace(i+1, count+1, selected | (1 << i));
//선택하지 않은 경우
selectChickenPlace(i+1, count, selected);
}
}
private static int getShortestDistance(Point house, int selectedStatus) {
int min = INF;
for (int i = 0; i < chickenPlaces.size(); i++) {
if((selectedStatus & (1 << i)) != 0) {
int dr = Math.abs(chickenPlaces.get(i).row - house.row);
int dc = Math.abs(chickenPlaces.get(i).col - house.col);
min = Math.min(min, dr+dc);
}
}
return min;
}
}
class Point {
int row, col;
public Point(int row, int col) {
this.row = row;
this.col = col;
}
@Override
public String toString() {
return "{row=" + row +
", col=" + col +
'}';
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 14499번] 주사위 굴리기 (0) | 2020.09.15 |
---|---|
[백준 14889번] 스타트와 링크 (0) | 2020.09.15 |
[백준 14502번] 연구소 (0) | 2020.09.13 |
[백준 1541번] 잃어버린 괄호 - 쉽고 간단한 풀이 (0) | 2020.09.13 |
[백준 14500번] 테트로미노 (0) | 2020.09.12 |
Comments