Game Develop

[Algorithm]Baekjoon 17090번 : 미로 탈출하기 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 17090번 : 미로 탈출하기

MaxLevel 2023. 11. 17. 17:10

https://www.acmicpc.net/problem/17090

 

17090번: 미로 탈출하기

크기가 N×M인 미로가 있고, 미로는 크기가 1×1인 칸으로 나누어져 있다. 미로의 각 칸에는 문자가 하나 적혀있는데, 적혀있는 문자에 따라서 다른 칸으로 이동할 수 있다. 어떤 칸(r, c)에 적힌 문

www.acmicpc.net

 
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
 
struct Node
{
    int y;
    int x;
};
 
int n, m;
char arr[500][500];
int dp[500][500];
bool visited[500][500= { false };
int answer = 0;
bool isCycle = false;
 
Node GetDir(int y, int x)
{
    if (arr[y][x] == 'U'return { -1,0 };
    if (arr[y][x] == 'R'return { 0,1 };
    if (arr[y][x] == 'D'return { 1,0 };
    if (arr[y][x] == 'L'return { 0,-1 };
}
 
bool isInRange(int y, int x)
{
    if (y < 0 || y == n || x < 0 || x == m) return false;
    return true;
}
 
int DFS(int y, int x)
{
    if (!isInRange(y, x)) return 1;
    if (dp[y][x] != -1return dp[y][x];
    if (visited[y][x]) return 0;
 
    visited[y][x] = true;
 
    Node dir = GetDir(y, x);
    int nextY = y + dir.y;
    int nextX = x + dir.x;
    int result = DFS(nextY, nextX);
    visited[y][x] = false;
 
    return dp[y][x] = result;
}
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
 
    cin >> n >> m;
 
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < m; ++j)
        {
            cin >> arr[i][j];
        }
    }
 
    memset(dp, -1sizeof(dp));
 
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < m; ++j)
        {
            DFS(i, j);
            if (dp[i][j] == 1++answer;
        }
    }
 
    cout << answer;
}
 
cs

바보같이 n*m크기만큼 memset을 수행했다가 계속 시간초과걸려서 살짝 헤맸었다.

 

이 문제에서 포인트는 사이클을 찾는것이다. y,x가 범위밖으로 나가야 탈출로 인정하는건데 그냥 맵 안에서 뺑뺑이 도는 경우가 존재한다.

이 경우를 찾기위해 방문체크를 하며, 진행하는 도중 방문체크했던곳에 방문한다면 사이클이 존재하는것으로 판단하고 0을 리턴한다(즉 해당 y,x에는 탈출할 경우의수가 아예 없다는 뜻)

이부분만 체크해주면 어렵지 않다.