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
- Programmers
- 1563
- 언리얼엔진5
- DeferredRendering
- 팰린드롬 만들기
- 오블완
- const
- 프로그래머스
- C++
- 줄 세우기
- 티스토리챌린지
- NRVO
- UnrealEngine5
- UnrealEngine4
- winapi
- directx
- IFileDialog
- C
- Frustum
- GeeksForGeeks
- 백준
- UE5
- RootMotion
- Unreal Engine5
- DirectX11
- baekjoon
- softeer
- RVO
- 2294
- algorithm
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 17090번 : 미로 탈출하기 본문
https://www.acmicpc.net/problem/17090
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] != -1) return 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, -1, sizeof(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에는 탈출할 경우의수가 아예 없다는 뜻)
이부분만 체크해주면 어렵지 않다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1202번 : 보석 도둑 (1) | 2023.11.20 |
---|---|
[Algorithm]Baekjoon 4920번 : 테트리스 게임 (0) | 2023.11.20 |
[Algorithm]Baekjoon 2186번 : 문자판 (0) | 2023.11.17 |
[Algorithm]Baekjoon 14267번 : 회사 문화 1 (0) | 2023.11.17 |
[Algorithm]Baekjoon 5557번 : 1학년 (0) | 2023.11.16 |