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++
- 1563
- RootMotion
- DirectX11
- 프로그래머스
- 팰린드롬 만들기
- 2294
- C
- Unreal Engine5
- GeeksForGeeks
- directx
- 티스토리챌린지
- NRVO
- winapi
- UnrealEngine4
- DeferredRendering
- softeer
- baekjoon
- 언리얼엔진5
- UnrealEngine5
- RVO
- algorithm
- 줄 세우기
- const
- Programmers
- IFileDialog
- 백준
- Frustum
- UE5
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 6593번 : 상범 빌딩 본문
https://www.acmicpc.net/problem/6593
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
|
struct Node
{
int z;
int y;
int x;
int count;
};
bool visited[31][31][31];
int dir[6][3] = { {0,-1,0}, {0,1,0},{0,0,-1},{0,0,1},{-1,0,0},{1,0,0} };
int l, r, c; // z, y, x 검사값
int sz, sy, sx, dz, dy, dx;
int BFS()
{
queue<Node> q;
q.push({ sz,sy,sx, 0});
while (!q.empty())
{
int curZ = q.front().z;
int curY = q.front().y;
int curX = q.front().x;
int curCount = q.front().count;
q.pop();
if (curZ == dz && curY == dy && curX == dx)
{
return curCount;
}
for (int i = 0; i < 6; ++i)
{
int nextZ = curZ + dir[i][0];
int nextY = curY + dir[i][1];
int nextX = curX + dir[i][2];
if (nextZ < 0 || nextZ >= l) continue;
if (nextY < 0 || nextY >= r) continue;
if (nextX < 0 || nextX >= c) continue;
if (visited[nextZ][nextY][nextX]) continue;
visited[nextZ][nextY][nextX] = true;
q.push({ nextZ,nextY,nextX,curCount + 1 });
}
}
return -1;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
vector<string> results;
while (1)
{
memset(visited, false, sizeof(visited));
cin >> l >> r >> c;
if (l == 0 && r == 0 && c == 0)
{
break;
}
for (int i = 0; i < l; ++i) // 각 층 순회
{
for (int j = 0; j < r; ++j)
{
for (int k = 0; k < c; ++k)
{
char t;
cin >> t;
if (t == 'S')
{
sz = i;
sy = j;
sx = k;
}
else if (t == 'E')
{
dz = i;
dy = j;
dx = k;
}
else if (t == '#')
{
visited[i][j][k] = true;
}
}
}
}
int result = BFS();
if (result == -1)
{
cout << "Trapped!" << endl;
}
else
{
cout << "Escaped in " << result << " minute(s)." << endl;
}
}
}
|
cs |
이전문제에서 방향이 추가 됐다는거 말고는 전혀 다를게 없는 문제이다.
마찬가지로 방문체크용 배열 하나만으로도 충분히 해결할 수 있다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2146번 : 다리 만들기 (1) | 2023.03.01 |
---|---|
[Algorithm] Baekjoon 9466번 : 텀 프로젝트 (1) | 2023.02.28 |
[Algorithm] Baekjoon 7562번 : 나이트의 이동 (0) | 2023.02.27 |
[Algorithm] Baekjoon 2583번 : 영역 구하기 (0) | 2023.02.26 |
[Algorithm] Baekjoon 5427번 : 불 (0) | 2023.02.25 |