백준 7575번 : 토마토 / C++
2023. 3. 15. 19:51ㆍ개인공부/코딩테스트
https://www.acmicpc.net/problem/7576
토마토 맛 토마토.....
바이러스가 퍼지는 문제처럼 익은 토마토는 안익은 토마토를 전염시키는 문제이다.
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 |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 1707번: 이분 그래프 / C++ (0) | 2023.03.16 |
---|---|
백준 2206번 : 벽 부수고 이동하기 / C++ (0) | 2023.03.16 |
백준 2178번 : 미로 탐색 / C++ (0) | 2023.03.15 |
백준 1260번 : DFS와 BFS / C++ (0) | 2023.03.14 |
백준 24479번: 알고리즘 수업-깊이 우선 탐색1 / C++ (0) | 2023.03.14 |