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
- algorithm
- 팰린드롬 만들기
- const
- 2294
- winapi
- 줄 세우기
- 오블완
- UE5
- Frustum
- 1563
- directx
- 프로그래머스
- C++
- UnrealEngine5
- RVO
- C
- UnrealEngine4
- DeferredRendering
- Unreal Engine5
- DirectX11
- softeer
- 티스토리챌린지
- GeeksForGeeks
- 언리얼엔진5
- IFileDialog
- Programmers
- baekjoon
- RootMotion
- 백준
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 14503번 : 로봇 청소기 본문
https://www.acmicpc.net/problem/14503
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
|
int row, col, startY, startX, curRobotDir;
int arr[51][51];
int dir[4][2] = { {-1,0}, {0,1}, {1,0}, {0,-1} }; // 북 동 남 서
int ccwDirIndex[4] = { 3,0,1,2 };
int backDirIndex[4] = { 2,3,0,1 };
bool checkAdj(int y, int x) // 청소해야할 칸이(0) 있으면 true, 없으면 false
{
for (int i = 0; i < 4; ++i)
{
int nextY = y + dir[i][0];
int nextX = x + dir[i][1];
if (arr[nextY][nextX] == 0) return true;
}
return false;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> row >> col >> startY >> startX >> curRobotDir;
for (int i = 0; i < row; ++i)
{
for (int j = 0; j < col; ++j)
{
cin >> arr[i][j];
}
}
int curY = startY;
int curX = startX;
int count = 0;
bool isStop = false;
while (!isStop)
{
if (arr[curY][curX] == 0) // 빈곳이면서 청소안한곳이면
{
arr[curY][curX] = 2; // 빈곳이면서, 청소한 곳
++count;
}
// 상하좌우 검사.
bool check = checkAdj(curY, curX);
if (!check) // 주변 4칸 청소할 필요 없는경우
{
// 후진할곳 좌표
int nextY = curY + dir[backDirIndex[curRobotDir]][0];
int nextX = curX + dir[backDirIndex[curRobotDir]][1];
if (arr[nextY][nextX] == 1) // 벽이라서 후진못하면
{
isStop = true;
break;
}
else // 후진 가능하면
{
// 현재위치 갱신.
curY = nextY;
curX = nextX;
}
}
else // 주변 4칸에 청소해야하는 칸 있을 경우
{
while (1)
{
curRobotDir = ccwDirIndex[curRobotDir]; // 반시계방향 회전.
int nextY = curY + dir[curRobotDir][0];
int nextX = curX + dir[curRobotDir][1];
if (arr[nextY][nextX] == 0)
{
curY = nextY;
curX = nextX;
break;
}
}
}
}
cout << count;
}
|
cs |
어쩌다보니 그냥 구현문제처럼 풀었다.
문제 자체는 BFS/DFS 카테고리에 있는 문제긴 한데... 그냥 문제 설명의 규칙을 순서대로 코드로 작성했다.
이렇게 해도 수행속도 0ms로 잘 통과되기는 한다.
주어진 규칙의 순서를 반드시 지켜야하는 줄 알았다;;
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 4179번 : 불! (0) | 2023.02.25 |
---|---|
[Algorithm] Baekjoon 1926번 : 그림 (0) | 2023.02.13 |
[Algorithm] Baekjoon 9205번 : 맥주 마시면서 걸어가기 (0) | 2023.02.13 |
[Algorithm] Baekjoon 2573번 : 빙산 (0) | 2023.02.13 |
[Algorithm] Baekjoon 2468번 : 안전 영역 (0) | 2023.02.08 |