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
- algorithm
- Frustum
- C
- 티스토리챌린지
- UnrealEngine5
- UE5
- directx
- const
- C++
- GeeksForGeeks
- 오블완
- DeferredRendering
- 1563
- baekjoon
- RootMotion
- softeer
- NRVO
- 백준
- winapi
- 언리얼엔진5
- 2294
- 팰린드롬 만들기
- UnrealEngine4
- IFileDialog
- 프로그래머스
- Unreal Engine5
- Programmers
- DirectX11
- RVO
- 줄 세우기
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 7569번 : 토마토 본문
https://www.acmicpc.net/problem/7569
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
|
struct Node
{
int depth;
int y;
int x;
int dayCount;
};
int tomatoes[101][101][101];
vector<Node> ripedTomatoes;
int dir[6][3] = { {0,-1,0}, {0,1,0}, {0,0,-1}, {0,0,1}, {1,0,0}, {-1,0,0} };
int allTomatoes = 0;
int targetCount = 0;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int col, row, depth;
cin >> col >> row >> depth;
for (int i = 0; i < depth; i++)
{
for (int j = 0; j < row; j++)
{
for (int k = 0; k < col; k++)
{
cin >> tomatoes[i][j][k];
if (tomatoes[i][j][k] != -1) allTomatoes++;
if (tomatoes[i][j][k] == 1)
{
ripedTomatoes.push_back({ i,j,k,0 });
}
}
}
}
targetCount = allTomatoes; // 익혀야 될 토마토개수.
queue<Node> q;
for (int i = 0; i < ripedTomatoes.size(); i++)
{
q.push(ripedTomatoes[i]);
}
while (!q.empty())
{
Node curNode = q.front();
q.pop();
int curDepth = curNode.depth;
int curY = curNode.y;
int curX = curNode.x;
int curDayCount = curNode.dayCount;
targetCount--;
if (targetCount == 0)
{
cout << curDayCount;
break;
}
for (int i = 0; i < 6; i++)
{
int nextDepth = curDepth + dir[i][0];
int nextY = curY + dir[i][1];
int nextX = curX + dir[i][2];
if (nextDepth < 0 || nextDepth >= depth) continue;
if (nextY < 0 || nextY >= row) continue;
if (nextX < 0 || nextX >= col) continue;
if (tomatoes[nextDepth][nextY][nextX] == 1) continue; // 이미 익은거면
if (tomatoes[nextDepth][nextY][nextX] == -1) continue; // 비어있는곳.
tomatoes[nextDepth][nextY][nextX] = 1;
q.push({ nextDepth,nextY,nextX,curDayCount + 1 });
}
}
if (targetCount > 0) cout << -1 << endl;
return 0;
}
|
cs |
3차원이긴 하지만 그저 방향 두개만 더 추가해주면 된다.
처음에 targetCount--를 큐에 푸쉬할때 했더니 틀려서 꺼낼때 하는식으로 코드를 수정했더니 통과했다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 16236번 : 아기상어 (0) | 2022.10.21 |
---|---|
[Algorithm] Baekjoon 7662번 : 이중 우선순위 큐 (0) | 2022.10.21 |
[Algorithm] Baekjoon 16928번 : 뱀과 사다리 게임 (0) | 2022.10.20 |
[Algorithm] Baekjoon 5430번 : AC (0) | 2022.10.20 |
[Algorithm] Baekjoon 1992번 : 쿼드트리 (0) | 2022.10.19 |