Notice
Recent Posts
Link
정화 코딩
[C++] 유기농 배추 (백준 1012번) 본문
https://www.acmicpc.net/problem/1012
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int dn[4] = {0, 0, -1, 1};
int dm[4] = {-1, 1, 0, 0};
int m, n, k;
int cnt = 0;
vector<vector<int>> g;
void bfs(vector<int> start) {
queue<vector<int>> q;
cnt++;
q.push(start);
g[start[0]][start[1]] = 0;
while (!q.empty()) {
vector<int> cur = q.front();
q.pop();
for (int i = 0; i < 4; i++) {
int tn = cur[0] + dn[i];
int tm = cur[1] + dm[i];
if (tn >= 0 && tn < n && tm >= 0 && tm < m && g[tn][tm] == 1) {
q.push({tn, tm});
g[tn][tm] = 0;
}
}
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int tn;
cin >> tn;
for (int t = 0; t < tn; t++) {
cnt = 0;
cin >> m >> n >> k;
g = vector<vector<int>>(n, (vector<int>(m, 0)));
int x, y;
for (int i = 0; i < k; i++) {
cin >> x >> y;
g[y][x] = 1;
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (g[i][j] == 1) {
bfs({i, j});
}
}
}
cout << cnt << '\n';
}
}
모든 칸을 탐색하며 해당 칸의 값이 1이면 bfs를 수행하도록 코드를 짰다. 여기서 중요한 건 방문한 칸, 즉 이미 배추 흰지렁이에 의해 해충이 제거된 칸은 방문한 즉시 0으로 만들어주어야 한다. (정답)
'PS' 카테고리의 다른 글
[C++] 소수 최소 공배수 (백준 21919번) (0) | 2024.05.21 |
---|---|
[C++] 집합 (백준 11723번) (0) | 2024.05.21 |
[C++] 피보나치 치킨 (백준 13270번) (0) | 2024.05.16 |
[C++] 토마토 (백준 7569번) (2) | 2024.05.16 |
C++과 친해지기 (0) | 2024.05.12 |
Comments