-

[SWEA_D4] 1226번 - 미로 1 본문

1-2. SWEA

[SWEA_D4] 1226번 - 미로 1

asdklfjlasdlfkj 2020. 3. 16. 10:21

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14vXUqAGMCFAYD&categoryId=AV14vXUqAGMCFAYD&categoryType=CODE&&&

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

dfs 알고리즘을 활용한 완전탐색 문제다.

주어진 조건대로 0이거나 목적지인 3인 경우만 갈 수 있게 설정하고, 방문하지 않은 곳에 대해서만 방문하도록 했다.

문자 -> 숫자 변환은 '0'을 빼는 것이므로 47번째 줄에서 처리해주었다.

 

아래는 코드

 

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
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
vector<vector<int> > MAP;
vector<vector<bool> > check;
int r_s, c_s;
int answer = 0;
typedef struct dir{
    int dr, dc;
}dir;
dir direction[4= { { 01 }, { 0-1 }, { 10 }, { -10 } };
 
void dfs(int r, int c){
    if (MAP[r][c] == 3){
        answer = 1;
        return;
    }
    check[r][c] = true;
    for (int i = 0; i < 4; i++){
        int nr = r + direction[i].dr;
        int nc = c + direction[i].dc;
        if (nr >= 0 && nr < 16 && nc >= 0 && nc < 16){
            if ((MAP[nr][nc] == 0 || MAP[nr][nc] == 3&& !check[nr][nc]){
                dfs(nr, nc);
            }
        }
    }
}
 
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    for (int tc = 1; tc <= 10; tc++){
        int t;
        cin >> t;
        answer = 0;
        MAP.assign(16vector<int>(160));
        check.assign(16vector<bool>(16false));
        for (int r = 0; r < 16; r++){
            string curRow;
            cin >> curRow;
            for (int c = 0; c < 16; c++){
                MAP[r][c] = curRow[c] - '0';
                if (MAP[r][c] == 2){
                    r_s = r;
                    c_s = c;
                }
            }
        }
        dfs(r_s, c_s);
        cout << "#" << t << " " << answer << '\n';
    }
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

Comments