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
- 강의실2
- 영상 프레임 추출
- mysqld.sock
- 원형
- 자료구조 목차
- MySQL
- c#
- 3273
- 탄막
- 문자열 압축
- 탄막 이동
- 윈도우
- 토글 그룹
- SWEA
- 유니티
- 2020 KAKAO BLIND RECRUITMENT
- 18249
- 마우스 따라다니기
- 단어 수학
- 우분투
- 회의실 배정
- 알고리즘 목차
- 걷는건귀찮아
- 알고리즘
- AI Hub
- 3344
- 탄막 스킬 범위
- 그리디알고리즘
- 백준
- 수 만들기
Archives
- Today
- Total
와이유스토리
[그래프(크루스칼)] 프로그래머스 섬 연결하기 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/42861?language=cpp
※ 크루스칼 알고리즘이란?
최소 신장 트리를 구하는 대표적인 알고리즘
* 최소 신장 트리 : 가중치 그래프에서 모든 정점을 포함하고 간선들의 가중치 합이 최소이며 사이클이 없는 트리
Union-Find로 구현
사이클 확인
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int parent[101];
int getRoot(int x) {
if (x == parent[x]) return x;
return parent[x] = getRoot(parent[x]);
}
void unions(int x, int y) {
x = getRoot(x);
y = getRoot(y);
// x!=y (x)
if (x<y) parent[y] = x;
else if (x>y) parent[x] = y;
}
bool find(int a, int b) {
a = getRoot(a);
b = getRoot(b);
if (a==b) return true;
return false;
}
bool cmp(vector<int> a, vector<int> b) {
return a[2] < b[2];
}
int solution(int n, vector<vector<int>> costs) {
int answer = 0;
// 간선 비용으로 오름차순 정렬(간선 선택)
sort(costs.begin(), costs.end(), cmp);
// parent 초기화
for(int i=0; i<n; i++) {
parent[i] = i;
}
// 전체 정점 중 간선 비용이 작은 순으로 같은 부모를 가지고 있지 않으면 연결
for(int i=0; i<costs.size(); i++) {
if(!find(costs[i][0], costs[i][1])) {
unions(costs[i][0], costs[i][1]);
answer += costs[i][2];
}
}
return answer;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 백트래킹] 백준 17136 색종이 붙이기 C++ (0) | 2022.01.22 |
---|---|
[그래프(프림)] (CHECK) 프로그래머스 섬 연결하기 C++ (0) | 2022.01.22 |
[BFS 반복] 백준 16263번 아기 상어 C++ (0) | 2022.01.21 |
[DFS 순열] 프로그래머스 여행 경로 C++ (0) | 2022.01.20 |
[DFS 순열] 프로그래머스 단어 변환 C++ (0) | 2022.01.20 |
Comments