백준 7575번 : 토마토 / C++

2023. 3. 15. 19:51개인공부/코딩테스트

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

 

7576번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토

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
93
94
95
96
97
98
 
#include <iostream>
#include <queue>
using namespace std;
 
int M, N; // 가로 col , 세로 row
int Day = -1;
int info[1000][1000]{}; // -1 빈칸 0 익지 않은 토마토 1 익은 토마토
 
 
struct Pos
{
    int irow;
    int icol;
 
    Pos(int _row, int _col)
        :irow(_row)
        , icol(_col)
    {}
};
 
queue<Pos> Q;
 
void BFS()
{
    queue<Pos> tmp;
    while (!Q.empty())
    {
        Pos now = Q.front();
 
        // up(row-1)
        if (now.irow > 0 && info[now.irow - 1][now.icol] == 0)
        {
            tmp.push(Pos(now.irow - 1, now.icol));
            info[now.irow - 1][now.icol] = 1;
        }
        // down(row+1)
        if (now.irow + 1 < N && info[now.irow + 1][now.icol] == 0)
        {
            tmp.push(Pos(now.irow + 1, now.icol));
            info[now.irow + 1][now.icol] = 1;
        }
        // left(col-1)
        if (now.icol > 0 && info[now.irow][now.icol - 1== 0)
        {
            tmp.push(Pos(now.irow, now.icol - 1));
            info[now.irow][now.icol - 1= 1;
        }
        // right(co1+1)
        if (now.icol + 1 < M && info[now.irow][now.icol + 1== 0)
        {
            tmp.push(Pos(now.irow, now.icol + 1));
            info[now.irow][now.icol + 1= 1;
        }
 
        Q.pop();
    }
    Q = tmp;
    ++Day;
}
 
int main(void)
{
    cin.tie(NULL);
    cout.tie(NULL);
    ios::sync_with_stdio(false);
 
    cin >> M >> N;
    for (int i = 0; i < N; ++i)
        for (int j = 0; j < M; ++j)
        {
            cin >> info[i][j]; // i:row  j:col
            if (info[i][j] == 1)
                Q.push(Pos(i, j));
        }
 
    while (!Q.empty())
    {
        BFS();
    }
 
    bool Clear = true;
    for (int i = 0; i < N; ++i)
        for (int j = 0; j < M; ++j)
        {
            if (info[i][j] == 0)
            {
                Clear = false;
            }
        }
    if (Clear == true)
        cout << Day;
    else
        cout << -1;
 
 
}
 
cs