-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSWEA4012.java
58 lines (51 loc) · 1.32 KB
/
SWEA4012.java
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
/**
* SWEA 4012번
* 조합.
*/
import java.util.Scanner;
public class SWEA4012 {
static int N; // 식재료의 수 4 ≤ N ≤ 16
static int[][] Synergy; // 각 재료와의 시너지
static boolean[] isSelected;
static int ans = Integer.MAX_VALUE;
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int T = scan.nextInt();
for (int tc=1; tc<=T; tc++) {
N = scan.nextInt();
Synergy = new int[N][N];
for (int i=0; i<N; i++) {
for (int j=0; j<N; j++)
Synergy[i][j] = scan.nextInt();
}
isSelected = new boolean[N];
comb(0, 0);
System.out.println("#" + tc + " " + ans);
}
}
// 식재료N개 중에서 N/2개를 뽑는 조합.
static void comb(int cnt, int start) {
if (cnt == N/2) {
// 음식 A와 B의 시너지 계산하기
int synergyA = 0, synergyB = 0;
for (int i=0; i<N; i++) {
for (int j=0; j<N; j++) {
if (i==j) continue;
if (isSelected[i] && isSelected[j])
synergyA += Synergy[i][j];
else if (!isSelected[i] && !isSelected[j])
synergyB += Synergy[i][j];
}
}
// 음식 A와 B의 맛의 차이
int diff = Math.abs(synergyA - synergyB);
ans = Math.min(ans, diff);
return;
}
for (int i=start; i<N; i++) {
isSelected[i] = true;
comb(cnt+1, start+1);
isSelected[i] = false;
}
}
}