Algorithm

[SWEA] 4012. 요리사

프로그래민 2020. 3. 24. 01:34
반응형

조합을 사용하는 문제이다.

백트래킹을 사용하는 comb함수를 구현하여 N개중에서 N/2개를 뽑는 조합의 경우를 구하고, 그 경우 마다 check함수를 적용시켜 서로 다른 두 집합의 시너지 합이 최소가 되는 경우를 찾았다. check함수에서는 visit배열을 기준으로 방문의 유무를 이용하여 두개의 그룹으로 나누었다. 그리고 이 check함수에서도 2개씩 뽑아내야 하는 조합이 있는데 이것은 단순 이중for문으로 구현하였다. 

문제를 이해하는데 꽤 많은 시간이 걸려서 다른 블로그를 참고하였다. 문제의 의도를 파악하는 연습이 필요한 것 같다.

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
package swea;
 
 
public class Solution_4012_요리사 {
    
    static int N;
    static int[][] arr;
    
    static int[] data;
    static int[] result;
    static boolean[] visit;
    
    static int answer;
    
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = null;
        
        int T=Integer.parseInt(br.readLine());
        
        for(int tc=1;tc<=T;tc++) {
            N=Integer.parseInt(br.readLine());
            arr=new int[N][N];
            
            for(int i=0;i<N;i++) {
                st=new StringTokenizer(br.readLine());
                for(int j=0;j<N;j++)
                    arr[i][j]=Integer.parseInt(st.nextToken());
            }
            
            data=new int[N];
            for(int i=0;i<N;i++)
                data[i]=i;
            result=new int[N/2];
            visit=new boolean[N];
            answer=Integer.MAX_VALUE;
            comb(0,0);
            
            System.out.println("#"+tc+" "+answer);
        }
    }
    
    static void comb(int start, int depth) {
        if(N/2==depth) {
            checkMinimum();
            
            return;
        }
        for(int i=start;i<N;i++) {
            if(visit[i]==false) {
                visit[i]=true;
                result[depth]=data[i];
                comb(i,depth+1);
                visit[i]=false;
            }
        }
    }
    
    static void checkMinimum() {
        List<Integer> forA = new ArrayList<>();
        List<Integer> forB = new ArrayList<>();
        
        for(int i=0;i<N;i++) {
            if(visit[i]==true)
                forA.add(i);
            else
                forB.add(i);
        }
        
        int totalA=0;
        int totalB=0;
        
        for(int i=0;i<forA.size()-1;i++) {
            for(int j=i;j<forB.size();j++) {
                totalA+=arr[forA.get(i)][forA.get(j)];
                totalA+=arr[forA.get(j)][forA.get(i)];
                totalB+=arr[forB.get(i)][forB.get(j)];
                totalB+=arr[forB.get(j)][forB.get(i)];
            }
        }
        
        answer=Math.min(answer, Math.abs(totalA-totalB));
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
                                                 
반응형

'Algorithm' 카테고리의 다른 글

[BOJ] 9663. N-Queen  (0) 2020.03.27
[SWEA] 5656. 벽돌 깨기  (0) 2020.03.24
[SWEA] 1868. 파핑파핑 지뢰찾기  (0) 2020.03.23
[BOJ] 2447. 별 찍기-10  (0) 2020.03.23
[BOJ] 2448. 별 찍기-11  (0) 2020.03.23