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
- NRVO
- Frustum
- const
- UnrealEngine4
- 백준
- C++
- Unreal Engine5
- 팰린드롬 만들기
- 오블완
- 줄 세우기
- DeferredRendering
- directx
- 프로그래머스
- 언리얼엔진5
- baekjoon
- 티스토리챌린지
- RVO
- IFileDialog
- DirectX11
- algorithm
- Programmers
- UE5
- 2294
- GeeksForGeeks
- softeer
- 1563
- C
- RootMotion
- winapi
- UnrealEngine5
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 거리두기 확인하기 본문
https://school.programmers.co.kr/learn/courses/30/lessons/81302
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
|
struct Node
{
int y;
int x;
int count;
};
int visited[6][6] = { false };
int dir[4][2] = { {-1,0}, {1,0}, {0,-1}, {0,1} };
bool BFS(int startRoom, int startY, int startX, vector<vector<string>>& places)
{
memset(visited, false, sizeof(visited));
queue<Node> q;
q.push({ startY,startX,0 });
visited[startY][startX] = true;
places[startRoom][startY][startX] = '?';
while (!q.empty())
{
int curY = q.front().y;
int curX = q.front().x;
int curCount = q.front().count;
q.pop();
if (places[startRoom][curY][curX] == 'P')
{
places[startRoom][startY][startX] = 'P';
return false;
}
if (curCount == 2) continue;
for (int i = 0; i < 4; ++i)
{
int nextY = curY + dir[i][0];
int nextX = curX + dir[i][1];
if (nextY < 0 || nextY >= 5) continue;
if (nextX < 0 || nextX >= 5) continue;
if (visited[nextY][nextX]) continue;
if (places[startRoom][nextY][nextX] == 'X') continue; // 파티션으로 막혀있으면
visited[nextY][nextX] = true;
q.push({ nextY,nextX,curCount + 1 });
}
}
places[startRoom][startY][startX] = 'P';
return true;
}
vector<int> solution(vector<vector<string>> places)
{
vector<int> answer;
for (int i = 0; i < 5; ++i) // 대기실
{
bool isBreak = false;
for (int j = 0; j < 5; ++j) // 대기실의 행
{
for (int k = 0; k < 5; ++k)
{
if (places[i][j][k] == 'P')
{
if (!BFS(i, j, k, places))
{
isBreak = true;
break;
}
}
}
if (isBreak) break;
}
if (isBreak) answer.push_back(0);
else answer.push_back(1);
}
return answer;
}
|
cs |
기본적으로 값들이 작아서 탐색이 아니라 if문으로도 풀수 있긴한데, 만약 조건이 이것저것 붙는다면 탐색으로 푸는 방법을 알아야할 것이다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 빛의 경로 사이클 (1) | 2023.06.05 |
---|---|
[Algorithm] Programmers :: 2개 이하로 다른 비트 (0) | 2023.06.04 |
[Algorithm] Programmers :: 이진 변환 반복 (0) | 2023.06.04 |
[Algorithm] Programmers :: 쿼드압축 후 개수 세기 (0) | 2023.06.03 |
[Algorithm] Programmers :: 방문 길이 (0) | 2023.06.03 |