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
- 1편
- 유니온파인드
- 서버개발캠프
- 중반부
- 카카오
- BaekJoon
- 보석쇼핑
- 코테
- Union-find
- 소감
- Smilegate
- 삼성 #코테 #2020상반기 #c++
- LIS #Algorithm #요소추적
- 카카오인턴
- BFS
- Algorithm
- 백준
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 코딩테스트
- 식단
- c++
- 투포인터
- 알고리즘
- 스마일게이트
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 지형 이동(c++) / bfs+MST(kruskal) 본문
반응형
bfs와 kruskal 알고리즘을 사용해야 하는 매우 괜찮은 문제이다.
총 3단계로 생각해볼 수 있다.
1) bfs로 이동할 수 있는 영역을 숫자로 check이차원 배열에 표시해두었다.
2) 그 후, 각 영역간에 필요한 사다리의 비용을 {사다리 비용, {영역1, 영역2}}의 형태로 vector에 저장했다.
3) MST를 구현하기 위해 kruskal을 사용하여 각 영역을 최소 비용으로 연결해주었다.
MST로 구현해야 한다는 것을 쉽게 생각해내지 못해서 좀 헤맸던 것 같다.
(어떻게 최소 비용으로 연결해주지..? 이 생각만 30분 넘게 했던 것 같...다....ㅎ)
코드 첨부
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
97
98
99
100
101
102
|
#include <string>
#include <vector>
#include <queue>
#include <algorithm>
#include <climits>
#include <iostream>
#include <cstring>
using namespace std;
int visited[301][301] = {0, };
int dx[4] = {-1, 1, 0, 0};
int dy[4] = {0, 0, -1, 1};
int check[301][301] = {0, }; // 영역을 구분하기 위한 배열
int parent[90001] = {0, };
vector<pair<int, pair<int, int>>> connect; // {사다리 비용, {영역1, 영역2}}
int find(int a){
if(a==parent[a]){
return a;
}
return parent[a] = find(parent[a]);
}
int solution(vector<vector<int>> land, int height) {
int answer = 0;
queue<pair<int, int>> q;
int r = land.size();
int c = land[0].size();
int idx = 0; // 영역을 표시하는 수
// 영역 표시하기
for(int i=0; i<r; i++){
for(int j=0; j<c; j++){
if(!visited[i][j]){
idx++;
int num = 10001;
q.push(make_pair(i, j));
while(!q.empty()){
int x = q.front().first;
int y = q.front().second;
check[x][y] = idx;
visited[x][y] = 1;
q.pop();
for(int k=0; k<4; k++){
int nx = x+dx[k];
int ny = y+dy[k];
if(0<=nx && nx<r && 0<=ny && ny<c && !visited[nx][ny]){
if(abs(land[x][y]-land[nx][ny])<=height){
visited[nx][ny] = 1;
q.push(make_pair(nx, ny));
check[nx][ny] = idx;
}
}
}
}
}
}
}
// 영역간 발생하는 사다리 비용 계산
for(int i=0; i<r; i++){
for(int j=0; j<c; j++){
for(int k=0; k<4; k++){
int nx = i+dx[k];
int ny = j+dy[k];
if(0<=nx && nx<r && 0<=ny && ny<c){
if(check[i][j]!=check[nx][ny]){
connect.push_back(make_pair(abs(land[i][j]-land[nx][ny]), make_pair(check[i][j], check[nx][ny])));
}
}
}
}
}
// 가장 적은 사다리 비용으로 영역을 연결(MST->kruskal)
sort(connect.begin(), connect.end()); // 비용순으로 정렬
for(int i=1; i<=idx; i++){
parent[i] = i;
}
for(int i=0; i<connect.size(); i++){
int x = connect[i].second.first;
int y = connect[i].second.second;
int cost = connect[i].first;
int a = find(x);
int b = find(y);
if(a!=b){
parent[a] = b;
answer += cost;
}
}
return answer;
}
|
cs |
문제 첨부
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 디스크컨트롤러(c++) / 힙(Heap) (0) | 2021.01.08 |
---|---|
프로그래머스. 카펫(c++) / 완탐(Brute Force) (0) | 2021.01.08 |
프로그래머스. 단속카메라(c++) / 그리디(Greedy) (0) | 2021.01.08 |
프로그래머스. 다리를 지나는 트럭(c++) / 큐(queue) (0) | 2021.01.07 |
프로그래머스. 징검다리(c++) / 이분탐색 (0) | 2020.08.28 |
Comments