반응형

문제 링크: https://www.acmicpc.net/problem/15686

 

15686번: 치킨 배달

크기가 N×N인 도시가 있다. 도시는 1×1크기의 칸으로 나누어져 있다. 도시의 각 칸은 빈 칸, 치킨집, 집 중 하나이다. 도시의 칸은 (r, c)와 같은 형태로 나타내고, r행 c열 또는 위에서부터 r번째 칸

www.acmicpc.net

<문제 풀이> 시뮬레이션 + 조합

문제에서 최대 M개의 치킨집을 선택할 수 있다고 했는데 치킨집의 개수가 많을수록 치킨 거리가 더 짧아지니깐 그냥 M개의 치킨집을 뽑는 조합을 구현하면 된다.

 

 

<C++ 소스 코드>

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
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
#include <cmath>
#include <deque>
#include <cstdlib>
using namespace std;
 
int board[50][50];
bool choose[50][50];
int N, M;
int res = 2500;
vector<pair<intint> > chicken;
vector<pair<intint> > house;
 
void dfs(int idx, int depth) {
    if (depth == M) {
        int sum = 0;
        for (auto h : house) {
            int r1 = h.first;
            int c1 = h.second;
            int chicken_dist = 2500;
            for (auto c : chicken) {
                int r2 = c.first;
                int c2 = c.second;
                if (choose[r2][c2]) {
                    int dist = abs(r1 - r2) + abs(c1 - c2);
                    chicken_dist = min(chicken_dist, dist);
                }
            }
            sum += chicken_dist;
 
        }
        res = min(res, sum);
        return;
    }
    int chicken_size = chicken.size();
    for (int i = idx; i < chicken_size; i++) {
        int r = chicken[i].first;
        int c = chicken[i].second;
        choose[r][c] = true;
        dfs(i + 1, depth + 1);
        choose[r][c] = false;
    }
}
 
 
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N >> M;
 
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            cin >> board[i][j];
            if (board[i][j] == 2) chicken.push_back({ i, j });
            if (board[i][j] == 1)house.push_back({ i, j });
        }
    }
    dfs(00);
 
    cout << res;
  
 
    return 0;
}
 
 
cs

 

반응형

'알고리즘 문제풀이 > 백준' 카테고리의 다른 글

[백준 6443번] 애너그램  (0) 2022.01.14
[백준 11559번] Puyo Puyo  (0) 2022.01.13
[백준 12094번] 2048 (Hard)  (0) 2022.01.08
[백준 12100번] 2048(Easy)  (0) 2022.01.05
[백준 18808번] 스티커 붙이기  (0) 2022.01.05

+ Recent posts