본문 바로가기
BaekJoon/C++

1012 : 유기농 배추 (C++)

by GrayChoi 2021. 2. 4.
반응형

 

1012번: 유기농 배추

차세대 영농인 한나는 강원도 고랭지에서 유기농 배추를 재배하기로 하였다. 농약을 쓰지 않고 배추를 재배하려면 배추를 해충으로부터 보호하는 것이 중요하기 때문에, 한나는 해충 방지에 

www.acmicpc.net


테스트 케이스가 여러개 존재 할 수 있으므로 배열 초기화를 반드시 해주어야한다.

 

BFS방식으로 풀었다.

#include<iostream>
#include<queue>

using namespace std;

#define MAX 50

int M, N, K;
int map[MAX][MAX];
bool visit[MAX][MAX];

int dx[4] = {1, -1, 0, 0};
int dy[4] = {0, 0, 1, -1};

void bfs(int x, int y) {
    queue<pair<int, int>> q;
    q.push({x, y});
    visit[x][y] = true;

    while(!q.empty()) {
        x = q.front().first;
        y = q.front().second;
        q.pop();

        for(int i = 0; i < 4; i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];
            if(nx < 0 || nx >= M || ny < 0 || ny >= N) {
                continue;
            }

            if(map[nx][ny] == 1 && visit[nx][ny] == false) {
                visit[nx][ny] = true;
                q.push({nx, ny});
            }

        }
    }
}

int main() {
    int test_case;

    cin >> test_case;

    for(int T = 0; T < test_case; T++) {
        int cnt = 0;
        cin >> M >> N >> K;
        fill(map[0], map[M], 0);
        fill(visit[0], visit[M], 0);
        
        for(int i = 0; i < K; i++) {
            int u, v;
            cin >> u >> v;

            map[u][v] = 1;
        }

        for(int i = 0; i < M; i++) {
            for(int j = 0; j < N; j++ ) {
                if(map[i][j] == 1 && visit[i][j] == false) {
                    bfs(i, j);
                    cnt++;
                }
            }
        }

        cout << cnt << endl;

    }

    return 0;
}
반응형

'BaekJoon > C++' 카테고리의 다른 글

7576 : 토마토 (C++)  (0) 2021.02.04
4963 : 섬의 개수 (C++)  (0) 2021.02.04
1009 : 분산처리 (C++)  (0) 2021.02.04
10808 : 알파벳 개수 (C++)  (0) 2021.02.04
1743 : 음식물 피하기 (C++)  (0) 2021.02.04

댓글