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
- 보석쇼핑
- 식단
- c++
- Algorithm
- 서버개발캠프
- 카카오인턴
- 코딩테스트
- 알고리즘
- Smilegate
- LIS #Algorithm #요소추적
- 소감
- 유니온파인드
- 카카오
- 삼성 #코테 #2020상반기 #c++
- 중반부
- BaekJoon
- Union-find
- 1편
- 백준
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 코테
- BFS
- 스마일게이트
- 투포인터
Archives
- Today
- Total
짱아의 개발 기록장
2021 KAKAO BLIND RECRUITMENT : 카드 짝 맞추기 / 백트래킹+다익스트라 본문
반응형
오우...level3정도의 문제는 아닌 것 같다는 느낌이다..
물론 어려운 알고리즘 기술을 요구하는 문제는 아니지만, 구현도 실력이라고 생각하기 때문에 쉽지 않은 문제라고 생각한다.
아래 블로그의 해설을 참고해서 풀 수 있었다.
yjyoon-dev.github.io/kakao/2021/01/29/kakao-paircard/
다익스트라(최단거리)+백트래킹 알고리즘이 혼합된 문제이다.
1) 백트래킹 => 모든 경우의 수 다 돌기
일단, 어떤 카드를 먼저 뒤집을 지를 결정해야 한다.(1~6번)
같은 카드의 경우에도 첫 번째 카드를 먼저 뒤집냐, 두 번째 카드를 먼저 뒤집냐에 따라 달라질 수 있다.
2) 다익스트라 => 특정 점에서 특정 점까지의 최단 거리 구하기
한 칸씩 이동하면서, 큐에 넣고
특히나, 벽에 닿거나 다른 카드가 있으면 +1을 한 값이 기존에 값보다 더 작으면 큐에 넣는다.
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// 다익스트라(최단거리) + 백트래킹(Brute Force)
// 같은 카드도 어떤 것을 먼저 뒤집느냐
// 어떤 카드 종류를 먼저 뒤집느냐에 따라 결과가 달라질 수 있음
#include <string>
#include <vector>
#include <climits>
#include <queue>
#include <tuple>
using namespace std;
int dx[4] = {0, 0, -1, 1};
int dy[4] = {-1, 1, 0, 0};
bool isDone(vector<vector<int>> &board){
for(int i=0; i<4; i++){
for(int j=0; j<4; j++){
if(board[i][j]!=0){
return false;
}
}
}
return true;
}
bool inRange(int x, int y){
if(x<0 || y<0 || x>=4 || y>=4){
return false;
}
return true;
}
// 다익스트라(최단거리)
int dijkstra(vector<vector<int>> &board, int x, int y, int ex, int ey){
priority_queue<pair<int, pair<int, int>>> pq;
int dist[4][4] = {0, };
for(int i=0; i<4; i++){
for(int j=0; j<4; j++){
dist[i][j] = INT_MAX;
}
}
dist[x][y] = 0;
pq.push(make_pair(0, make_pair(x, y)));
while(!pq.empty()){
int distance = -pq.top().first;
int x1 = pq.top().second.first;
int y1 = pq.top().second.second;
pq.pop();
if(x1==ex && y1 ==ey){
return distance;
}
for(int i=0; i<4; i++){
int cnt = 0;
int nx = x1, ny = y1;
while(inRange(nx+dx[i], ny+dy[i])){
cnt++;
nx += dx[i], ny += dy[i];
if(board[nx][ny]!=0) break;
if(dist[nx][ny]>distance+cnt){
dist[nx][ny] = distance+cnt;
pq.push(make_pair(-dist[nx][ny], make_pair(nx, ny)));
}
}
if(dist[nx][ny]>distance+1){
dist[nx][ny] = distance+1;
pq.push(make_pair(-dist[nx][ny], make_pair(nx, ny)));
}
}
}
}
// 백트래킹(Brute Force)
int brute(vector<vector<int>> &board, int r, int c){
if(isDone(board)) return 0;
int ans = INT_MAX;
for(int i=1; i<=6; i++){
vector<pair<int, int>> point;
for(int j=0; j<4; j++){
for(int k=0; k<4; k++){
if(board[j][k]==i){
point.push_back(make_pair(j, k));
}
}
}
if(point.empty()) continue;
// 첫번째 카드를 먼저 뒤집어
int cal1 = dijkstra(board, r, c, point[0].first, point[0].second)+
dijkstra(board, point[0].first, point[0].second, point[1].first, point[1].second) + 2;
// 두번째 카드를 먼저 뒤집어
int cal2 = dijkstra(board, r, c, point[1].first, point[1].second)+
dijkstra(board, point[1].first, point[1].second, point[0].first, point[0].second) + 2;
board[point[0].first][point[0].second] = 0;
board[point[1].first][point[1].second] = 0;
ans = min(ans, min(cal1+brute(board, point[1].first, point[1].second), cal2+brute(board, point[0].first, point[0].second)));
board[point[0].first][point[0].second] = i;
board[point[1].first][point[1].second] = i;
}
return ans;
}
int solution(vector<vector<int>> board, int r, int c) {
int answer = 0;
answer = brute(board, r, c);
return answer;
}
|
cs |
반응형
'Algorithm > 카카오 기출' 카테고리의 다른 글
2020 카카오 인턴십 : 동굴 탐험(c++) / Tree+BFS (0) | 2021.05.06 |
---|---|
2021 KAKAO BLIND RECRUITMENT : 광고 삽입 (c++) / String (0) | 2021.03.15 |
2019 카카오 개발자 겨울 인턴십 : 튜플(c++) / 구현 (0) | 2021.03.14 |
2018 KAKAO BLIND RECRUITMENT : 프렌즈4 블록(c++) / 구현 (0) | 2021.03.10 |
2020 KAKAO BLIND RECRUITMENT : 기둥과 보(c++) / 구현 (0) | 2021.03.10 |
Comments