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
- const
- directx
- C
- RVO
- GeeksForGeeks
- 언리얼엔진5
- softeer
- RootMotion
- IFileDialog
- algorithm
- 오블완
- Frustum
- UnrealEngine5
- UE5
- Unreal Engine5
- NRVO
- DeferredRendering
- baekjoon
- winapi
- 백준
- 1563
- Programmers
- UnrealEngine4
- 프로그래머스
- DirectX11
- 2294
- C++
- 줄 세우기
- 팰린드롬 만들기
- 티스토리챌린지
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 16398번 : 행성 연결 본문
https://www.acmicpc.net/problem/16398
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
|
struct Node
{
int start;
int end;
int cost;
};
int n;
int parents[1000];
bool visited[1000][1000] = { false };
vector<Node> costs;
int GetParent(int node)
{
if (parents[node] == node) return node;
return parents[node] = GetParent(parents[node]);
}
bool CompareParent(int a, int b)
{
return GetParent(a) == GetParent(b);
}
void UnionSet(int a, int b)
{
a = GetParent(a);
b = GetParent(b);
if (a < b) parents[b] = a;
else parents[a] = b;
}
bool cmp(const Node& a, const Node& b)
{
return a.cost < b.cost;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
long long answer = 0;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
int cost;
cin >> cost;
if (i == j) continue;
if (visited[j][i]) continue;
visited[i][j] = true;
costs.push_back({ i,j,cost });
}
}
for (int i = 0; i < n; ++i) parents[i] = i;
sort(costs.begin(), costs.end(), cmp);
for (int i = 0; i < costs.size(); ++i)
{
if (!CompareParent(costs[i].start, costs[i].end))
{
UnionSet(costs[i].start, costs[i].end);
answer += costs[i].cost;
}
}
cout << answer;
}
|
cs |
최소신장트리(MST)를 만들어야하는 기본예제수준의 문제이다.
크루스칼이나 프림 둘 중 하나를 이용해서 만들 수 있는데, 나는 크루스칼로 만들었다.
시간복잡도는 가중치를 오름차순으로 만들기 위한 정렬의 시간복잡도에 거의 의지한다고 보면 된다.
STL의 sort의 시간복잡도는 N log N인데, 여기서 N은 간선의 개수니까 E log E 라고 표현할 수 있다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 14889번 : 스타트와 링크 (0) | 2023.09.28 |
---|---|
[Algorithm] Baekjoon 10800번 : 컬러볼 (0) | 2023.09.27 |
[Algorithm] Baekjoon 1722번 : 순열의 순서 (0) | 2023.09.26 |
[Algorithm] Baekjoon 14499번 : 주사위 굴리기 (0) | 2023.09.26 |
[Algorithm] Baekjoon 15684번 : 사다리 조작 (0) | 2023.09.26 |