짱아의 개발 기록장

2020 카카오 인턴 코딩 테스트 - 4번. 경주로 건설(c++) 본문

Algorithm/카카오 기출

2020 카카오 인턴 코딩 테스트 - 4번. 경주로 건설(c++)

jungahshin 2020. 7. 21. 23:08
반응형

bfs로 한 번에 풀 수 있는 문제였다.

다만, visited배열을 4차원 배열로 선언해서 x, y, dir, dir_num(지금까지 방향 전환한 수) 이렇게 4가지 값을 저장햇다.

 

 

코드 첨부(c++)

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
//2020 카카오인턴 #4번(bfs)
//경주로 건설
#include <string>
#include <vector>
#include <iostream>
#include <queue>
#include <tuple>
#include <climits>
 
using namespace std;
 
int n;
int board[26][26= {0, };
int move_num, dir, dir_num;
int answer = INT_MAX;
int visited[26][26][5][700= {0, };//위치, 방향
int dx[4= {-1010};
int dy[4= {010-1};
queue<pair<pair<intint>, tuple<intintint>>> q;//위치, (이동거리, 방향, 방향 전환 수)
 
int main() {
    cin>>n;
    for(int i=0; i<n; i++){
        for(int j=0; j<n; j++){
            cin>>board[i][j];
        }
    }
    //초기 2방향 가능(오, 아래)
    q.push(make_pair(make_pair(00), make_tuple(010)));
    q.push(make_pair(make_pair(00), make_tuple(020)));
    
    while(!q.empty()){
        int x = q.front().first.first;
        int y = q.front().first.second;
        tie(move_num, dir, dir_num) = q.front().second;
        visited[x][y][dir][dir_num] = 1;
        q.pop();
                
        if(x==n-1 && y==n-1){
            int total = move_num*100+dir_num*500;
            answer = min(answer, total);
        }
        
        for(int i=0; i<4; i++){
            int nx = x+dx[i];
            int ny = y+dy[i];
            if(0<=nx && nx<&& 0<=ny && ny<n){
                if(board[nx][ny] == 0){
                    if(dir == i){//전과 같은 방향
                        if(!visited[nx][ny][i][dir_num]){
                           visited[nx][ny][i][dir_num] = 1;
                            q.push(make_pair(make_pair(nx, ny), make_tuple(move_num+1, i, dir_num))); 
                        }
                    }else{//전과 다른 방향
                        if(!visited[nx][ny][i][dir_num+1]){
                            visited[nx][ny][i][dir_num+1= 1;
                            q.push(make_pair(make_pair(nx, ny), make_tuple(move_num+1, i, dir_num+1)));
                        }
                    }
                }
            }
        }
    }
    
    cout<<answer<<"\n";
    return 0;
}
cs

 

문제 첨부

https://programmers.co.kr/learn/courses/30/lessons/67259

 

코딩테스트 연습 - 경주로 건설

[[0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0],[0,0,0,0,1,0,0,0],[0,0,0,1,0,0,0,1],[0,0,1,0,0,0,1,0],[0,1,0,0,0,1,0,0],[1,0,0,0,0,0,0,0]] 3800 [[0,0,1,0],[0,0,0,0],[0,1,0,1],[1,0,0,0]] 2100 [[0,0,0,0,0,0],[0,1,1,1,1,0],[0,0,1,0,0,0],[1,0,0,1,0,1],[

programmers.co.kr

 

github 첨부(https://github.com/jungahshin/algorithm/blob/master/c:c%2B%2B/%5B2020%EC%B9%B4%EC%B9%B4%EC%98%A4%EC%9D%B8%ED%84%B4%5D%EA%B2%BD%EC%A3%BC%EB%A1%9C%EA%B1%B4%EC%84%A4.cpp)

 

jungahshin/algorithm

algorithm study. Contribute to jungahshin/algorithm development by creating an account on GitHub.

github.com

 

반응형
Comments