[BOJ] 14889 스타트와 링크

Time Lapse :12min 23sec

14889.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
#include <stdio.h>
int avlity[20][20];
int team[20];
int ans = 987654321, N;
void DFS(int c,int t1,int t2) {
if (!ans) return;
if (c == N) {
int cmp = 0;
for(int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j) {
if (team[i] == 1 && team[i] == team[j])
cmp += avlity[i][j];
else if (team[i] == 2 && team[i] == team[j])
cmp -= avlity[i][j];
}
if (cmp < 0) cmp *= -1;
ans = ans > cmp ? cmp : ans;
}
else if (t1 == (N >> 1)) {
team[c] = 2;
DFS(c + 1, t1,t2+1);
}
else if (t2 == (N >> 1)) {
team[c] = 1;
DFS(c + 1, t1 + 1, t2);
}
else {
team[c] = 1;
DFS(c + 1, t1 + 1,t2);
team[c] = 2;
DFS(c + 1, t1,t2+1);
}
}
int main() {
scanf("%d", &N);
for (int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j)
scanf("%d", &avlity[i][j]);
team[0] = 1;
DFS(1, 1, 0);
printf("%d", ans);
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/23/PS/BOJ/14889/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.