https://www.acmicpc.net/problem/30106
코드
#include <iostream>
#include <queue>
using namespace std;
#define MAX 501
#define FASTIO ios::sync_with_stdio(false); cin.tie(NULL);
typedef pair<int, int> pi;
int n, m, k, arr[MAX][MAX], ans;
int dx[4] = { 1, -1, 0, 0 }, dy[4] = { 0, 0, 1, -1 };
bool visit[MAX][MAX];
void bfs(int x, int y) {
queue<pi> q;
q.push({ x, y });
while (!q.empty()) {
int nx = q.front().first;
int ny = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int gx = nx + dx[i];
int gy = ny + dy[i];
if (gx >= 0 && gx < n && gy >= 0 && gy < m && !visit[gx][gy]) {
if (abs(arr[gx][gy] - arr[nx][ny]) <= k) {
q.push({ gx, gy });
visit[gx][gy] = true;
}
}
}
}
}
int main() {
FASTIO;
cin >> n >> m >> k;
for (int i = 0; i < n; i++)
for (int j = 0; j < m; j++)
cin >> arr[i][j];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (!visit[i][j]) {
bfs(i, j);
ans++;
}
}
}
cout << ans << "\n";
return 0;
}
설명
현재 위치에서 값의 차가 K 이하인 영역으로 BFS를 돌면 됩니다.
느낀 점
BFS 응용 문제입니다!
'PS (C, C++)' 카테고리의 다른 글
[백준/C++] 27211 도넛 행성 (0) | 2025.01.06 |
---|---|
[백준/C++] 16472 고냥이 (0) | 2025.01.01 |
[백준/C++] 16397 탈출 (0) | 2024.12.01 |
[백준/C++] 28353 고양이 카페 (2) | 2024.11.30 |
[백준/C++] 14395 4연산 (0) | 2024.11.25 |