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
- 프로그래머스
- algorithm
- 줄 세우기
- const
- 1563
- C
- 팰린드롬 만들기
- UnrealEngine4
- 오블완
- C++
- 백준
- RVO
- UnrealEngine5
- DeferredRendering
- IFileDialog
- 티스토리챌린지
- directx
- 2294
- winapi
- Frustum
- 언리얼엔진5
- NRVO
- Unreal Engine5
- DirectX11
- softeer
- Programmers
- UE5
- RootMotion
- baekjoon
- GeeksForGeeks
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1647 :: 도시 분할 계획 본문
https://www.acmicpc.net/problem/1647
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
using namespace std;
struct Node
{
int node1;
int node2;
int cost;
};
int parents[100001] = { 0 };
int FindParent(int node)
{
if (parents[node] == node)
{
return node;
}
return parents[node] = FindParent(parents[node]);
}
bool CompareParents(int node1, int node2)
{
if (FindParent(node1) == FindParent(node2)) return true;
else return false;
}
void UnionParents(int node1, int node2)
{
node1 = FindParent(node1);
node2 = FindParent(node2);
if (node1 < node2)
{
parents[node2] = node1;
}
else
{
parents[node1] = node2;
}
}
bool cmp(const Node& a, const Node& b)
{
return a.cost < b.cost;
}
int n, m;
vector<Node> nodes;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
for (int i = 1; i <= n; ++i)
{
parents[i] = i;
}
for (int i = 0; i < m; ++i)
{
int a, b, c;
cin >> a >> b >> c;
nodes.push_back({ a,b,c });
}
sort(nodes.begin(), nodes.end(), cmp);
int answer = 0;
int maxCost = 0;
for (int i = 0; i < nodes.size(); ++i)
{
if (CompareParents(nodes[i].node1, nodes[i].node2) == false)
{
answer += nodes[i].cost;
maxCost = max(maxCost, nodes[i].cost);
UnionParents(nodes[i].node1, nodes[i].node2);
--n;
}
if (n == 1) break;
}
cout << answer - maxCost;
}
|
cs |
문제를 읽자마자 MST가 생각났다. 다만, 두 마을로 분할한다는 점에서 어떻게해야할까 생각하다가, 어차피 양방향간선인 하나의 그래프니까, 가장 비싼가중치 하나만 뚝 자르면 되지않을까? 하고 코드를 작성하고 제출했는데 통과했다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2143번 : 두 배열의 합 (2) | 2024.02.04 |
---|---|
[Algorithm]Baekjoon 1766번 : 문제집 (0) | 2024.02.03 |
[Algorithm]Baekjoon 1644 :: 소수의 연속합 (1) | 2024.01.30 |
[Algorithm]Baekjoon 1208 :: 부분수열의 합 2 (1) | 2024.01.29 |
[Algorithm]Baekjoon 1197 :: 최소 스패닝 트리 (0) | 2024.01.26 |