Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 팰린드롬 만들기
- 티스토리챌린지
- 줄 세우기
- C
- 백준
- UE5
- baekjoon
- directx
- Unreal Engine5
- UnrealEngine5
- RVO
- 1563
- RootMotion
- 오블완
- 언리얼엔진5
- Programmers
- GeeksForGeeks
- Frustum
- const
- winapi
- softeer
- C++
- UnrealEngine4
- 2294
- 프로그래머스
- DirectX11
- IFileDialog
- algorithm
- DeferredRendering
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 14889번 : 스타트와 링크 본문
https://www.acmicpc.net/problem/14889
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 |
각팀을 짰을 때 점수차이를 최소화해야한다.
그냥 각 선수를 뽑아서 팀을 구성했을 때마다 점수차이를 구하는 완전탐색으로 풀었다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 18111번 : 마인크래프트 (1) | 2023.10.10 |
---|---|
[Algorithm] Baekjoon 14890번 : 경사로 (0) | 2023.09.29 |
[Algorithm] Baekjoon 10800번 : 컬러볼 (0) | 2023.09.27 |
[Algorithm] Baekjoon 16398번 : 행성 연결 (1) | 2023.09.27 |
[Algorithm] Baekjoon 1722번 : 순열의 순서 (0) | 2023.09.26 |