Game Develop

[Algorithm] Baekjoon 14889번 : 스타트와 링크 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 14889번 : 스타트와 링크

MaxLevel 2023. 9. 28. 20:30

https://www.acmicpc.net/problem/14889

 

14889번: 스타트와 링크

예제 2의 경우에 (1, 3, 6), (2, 4, 5)로 팀을 나누면 되고, 예제 3의 경우에는 (1, 2, 4, 5), (3, 6, 7, 8)로 팀을 나누면 된다.

www.acmicpc.net

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
int n;
int arr[20][20= { 0 };
int maxDepth;
vector<int> curNums;
int answer = 0x3f3f3f3f;
 
int CalcScoreGap()
{
    bool visited[20= { false };
    int firstTeamScroe = 0;
    int secondTeamScore = 0;
 
    for (int i = 0; i < curNums.size(); ++i)
    {
        visited[curNums[i]] = true;
        for (int j = i + 1; j < curNums.size(); ++j)
        {
            firstTeamScroe += arr[curNums[i]][curNums[j]] + arr[curNums[j]][curNums[i]];
        }
    }
 
    for (int i = 0; i < n; ++i)
    {
        if (visited[i]) continue;
        for (int j = i + 1; j < n; ++j)
        {
            if (visited[j]) continue;
            secondTeamScore += arr[i][j] + arr[j][i];
        }
    }
 
    return abs(firstTeamScroe - secondTeamScore);
}
 
void DFS(int index)
{
    if (curNums.size() == maxDepth)
    {
        // 점수계산.
        if (curNums[0== 0 && curNums[1== 3)
        {
            int asfd = 0;
        }
        answer = min(answer, CalcScoreGap());
        return;
    }
 
    for (int i = index + 1; i < n; ++i)
    {
        curNums.push_back(i);
        DFS(i);
        curNums.pop_back();
    }
}
 
int main(void)
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    cin >> n;
    maxDepth = n / 2;
 
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < n; ++j)
        {
            cin >> arr[i][j];
        }
    }
 
    for (int i = 0; i < maxDepth + 1++i)
    {
        curNums.push_back(i);
        DFS(i);
        curNums.pop_back();
    }
 
    cout << answer;
}
cs

각팀을 짰을 때 점수차이를 최소화해야한다.

그냥 각 선수를 뽑아서 팀을 구성했을 때마다 점수차이를 구하는 완전탐색으로 풀었다.