Algorithm/BOJ

[BOJ] 진우의 민트초코우유

goakgoak 2020. 11. 27. 17:12

[20208] 진우의 민트초코우유

www.acmicpc.net/problem/20208

Solution

  • 집 - 민초s - 집 까지 체력을 유지하면서 돌아올 수 있는 경우 중 최대 민초집 수를 구하는 문제
  • permutation으로 민초집 수를 늘리면서 & 순서를 달리한 경로를 pick 배열에 저장했고, 체력을 유지한 채 집까지 돌아올 수 있는 최대 민초집 수를 answer에 저장하여 풀었다.

 

 

소스코드

 

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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
 
public class Main {
    static int n, m, h, answer = 0;
    static int[][] map;
    static int[] pick;
    static boolean[] c;
    static Node home;
    static List<Node> minchos;
 
    static class Node {
        private int x;
        private int y;
 
        public Node(int x, int y) {
            this.x = x;
            this.y = y;
        }
    }
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        n = stoi(st.nextToken());
        m = stoi(st.nextToken());
        h = stoi(st.nextToken());
 
        map = new int[n][n];
        minchos = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            st = new StringTokenizer(br.readLine());
            for (int j = 0; j < n; j++) {
                map[i][j] = stoi(st.nextToken());
                if (map[i][j] == 1) {
                    home = new Node(i, j);
                } else if (map[i][j] == 2) {
                    minchos.add(new Node(i, j));
                }
            }
        }
 
        pick = new int[minchos.size()];
        c = new boolean[minchos.size()];
        permutation(0);
        System.out.println(answer);
    }
 
    private static void permutation(int depth) {
        if (depth > answer) {
            simulation(depth);
        }
        if (depth < minchos.size()) {
            for (int i = 0; i < minchos.size(); i++) {
                if (!c[i]) {
                    c[i] = true;
                    pick[depth] = i;
                    permutation(depth + 1);
                    c[i] = false;
                }
            }
        }
    }
 
    private static void simulation(int count) {
        int cur = m;
        int x = home.x;
        int y = home.y;
        for (int i = 0; i < count; i++) {
            Node mincho = minchos.get(pick[i]);
            int d = Math.abs(x - mincho.x) + Math.abs(y - mincho.y);
            if (d <= cur) {
                cur -= d;
                cur += h;
                x = mincho.x;
                y = mincho.y;
            } else {
                return;
            }
        }
 
        if (Math.abs(x - home.x) + Math.abs(y - home.y) <= cur) {
            answer = Math.max(answer, count);
        }
    }
 
    private static int stoi(String s) {
        return Integer.parseInt(s);
    }
}
cs