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
- Union-find
- Smilegate
- 코딩테스트
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- LIS #Algorithm #요소추적
- 코테
- 투포인터
- BaekJoon
- 스마일게이트
- 1편
- c++
- 식단
- 삼성 #코테 #2020상반기 #c++
- 중반부
- 소감
- BFS
- 알고리즘
- 백준
- 카카오인턴
- 서버개발캠프
- 보석쇼핑
- Algorithm
- 유니온파인드
- 카카오
Archives
- Today
- Total
짱아의 개발 기록장
백준 4386번. 별자리 만들기(c++) / MST(kruskal) 본문
반응형
모든 점을 연결하는 최소 비용을 구하는 문제이다.
따라서 MST알고리즘을 사용해야한다. 글쓴이는 그 중 kruskal 알고리즘을 사용하여 문제를 풀었다.
벡터에 {두 점을 연결하는 비용, {점1, 점2}}의 형태로 정보를 저장해주었다.
그리고 벡터를 비용순으로 sort한다.
모든 점을 하나씩 union하면서 최소 비용을 찾는다.
코드 첨부
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
|
// 별자리 만들기(MST->kruskal)
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
int n;
double x, y;
int connect[101] = {0, };
vector<pair<double, double>> stars;
vector<pair<double, pair<int, int>>> v;
double answer = 0;
int find(int a){
if(a==connect[a]){
return a;
}
return connect[a] = find(connect[a]);
}
double cal(double x1, double y1, double x2, double y2)
{
return sqrt(pow(x2-x1, 2)+pow(y2-y1, 2));
}
int main()
{
cin>>n;
for(int i=0; i<n; i++){
cin>>x>>y;
stars.push_back(make_pair(x, y));
}
// 두 점 사이의 거리를 저장한다.
for(int i=0; i<stars.size(); i++){
for(int j=i+1; j<stars.size(); j++){
double cost = cal(stars[i].first, stars[i].second, stars[j].first, stars[j].second);
v.push_back(make_pair(cost, make_pair(i, j)));
}
}
for(int i=0; i<n; i++){
connect[i] = i;
}
sort(v.begin(), v.end());
for(int i=0; i<v.size(); i++){
int x = v[i].second.first;
int y = v[i].second.second;
double cost = v[i].first;
int a = find(x);
int b = find(y);
if(a!=b){
connect[a] = b;
answer += cost;
}
}
cout.precision(3);
cout<<answer<<"\n";
return 0;
}
|
cs |
문제 첨부
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 10775번. 공항(c++) / 유니온파인드 (0) | 2020.08.31 |
---|---|
백준 1854번. K번째 최단 경로(c++) / 다익스트라 (0) | 2020.08.31 |
백준 10815번. 숫자 카드(c++) / 이분 탐색 (0) | 2020.08.27 |
백준 16402번. 제국(c++) / 문자열 처리+유니온파인드 (0) | 2020.08.27 |
백준 5557번. 1학년(c++) / dp (0) | 2020.08.26 |
Comments