반응형
https://programmers.co.kr/learn/courses/30/lessons/42861
크루스칼 알고리즘이나 프림 알고리즘을 알고 있다면 풀 수 있는 문제입니다.
문제 접근법
- 크루스칼 알고리즘을 사용하기 위하여 비용에 관하여 오름차순으로 정렬해줍니다.
- 자기 자신이 루트의 최상위로 인식하도록 초기화를 해줍니다.
- 모든 노드를 탐색하면서 진행하되, 현재 노드와 다음 노드가 루트가 다를 경우 연결합니다.
아래는 코드입니다.
더보기
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
|
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int root[100];
vector<int> v;
bool checkCost(vector<int> &a, vector<int> &b)
{
return a[2] < b[2];
}
int findRoot(int node)
{
if(node == root[node])
return node;
else
return root[node] = findRoot(root[node]);
}
int solution(int n, vector<vector<int>> costs) {
int answer = 0;
int len = costs.size();
sort(costs.begin(), costs.end(), checkCost);
for(int i = 0; i < n; i++)
root[i] = i;
for(int i = 0; i < len; i++)
{
int current = findRoot(costs[i][0]);
int next = findRoot(costs[i][1]);
int cost = costs[i][2];
if(current != next)
{
root[end] = current;
answer += cost;
}
}
return answer;
}
|
cs |
반응형
'프로그래머스 문제풀이 > LEVEL 3' 카테고리의 다른 글
[프로그래머스 / Level 3] 입국심사 (C++) (0) | 2021.11.16 |
---|---|
[프로그래머스 / Level 3] 단속카메라 (C++) (0) | 2021.11.05 |
[프로그래머스 / Level 3] 정수 삼각형 (C++) (0) | 2021.11.02 |
[프로그래머스 / Level 3] 등굣길 (C++) (0) | 2021.11.02 |
[프로그래머스 / Level 3] 네트워크 (C++) (0) | 2021.11.02 |