Game Develop

[Algorithm] Baekjoon 7569번 : 토마토 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 7569번 : 토마토

MaxLevel 2022. 10. 21. 00:30

https://www.acmicpc.net/problem/7569

 

7569번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N과 쌓아올려지는 상자의 수를 나타내는 H가 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M ≤ 100, 2 ≤ N ≤ 100,

www.acmicpc.net

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] == 1continue// 이미 익은거면
            if (tomatoes[nextDepth][nextY][nextX] == -1continue// 비어있는곳.
 
            tomatoes[nextDepth][nextY][nextX] = 1;
            q.push({ nextDepth,nextY,nextX,curDayCount + 1 });
        }
    }
 
    if (targetCount > 0cout << -1 << endl;
    return 0;
}
 
cs

3차원이긴 하지만 그저 방향 두개만 더 추가해주면 된다.

처음에 targetCount--를 큐에 푸쉬할때 했더니 틀려서 꺼낼때 하는식으로 코드를 수정했더니 통과했다.