본문 바로가기
Algorithm/BFS DFS

[백준] 1012 유기농 배추 c++

by 젊은오리 2023. 2. 27.
728x90

 

문제 링크 https://www.acmicpc.net/problem/1012

백준 2667번 [단지번호 붙이기]와 거의 같은 문제이다.

문제 풀이 링크 >> https://everydayyy.tistory.com/101

 

DFS로 배열을 한번 순회할 때마다 카운트를 해주면 되는 문제이다.

주의할 점은, 테스트케이스마다 방문배열, 입력배열을 0으로 초기화해야 된다는 점. 

아마 이부분 때문에 정답률이 낮았던 것 같다.

 

Code

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
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<cstring>
using namespace std;
const int MAX = 51;
int t, n, m, k; //입력 값
int arr[MAX][MAX];
int dir[4][2= { {-1,0},{1,0},{0,1},{0,-1} };
bool visited[MAX][MAX];
 
void dfs(int x, int y) {
    for (int i = 0; i < 4; i++) {
        int nx = x + dir[i][0];
        int ny = y + dir[i][1];
        if (visited[nx][ny])
            continue;
        if (nx < 0 || nx >= n || ny < 0 || ny >= m)
            continue;
        if (arr[nx][ny] == 0)
            continue;
        visited[nx][ny] = true;
        dfs(nx, ny);
    }
}
int main()
{
    cin >> t;
    while (t--) {
        memset(visited, falsesizeof(visited)); //방문노드 초기화
        memset(arr, 0sizeof(arr)); //입력배열 초기화
        cin >> n >> m >> k;
        for (int i = 0; i < k; i++) {
            int x, y;
            cin >> x >> y;
            arr[x][y] = 1;
        }
        int cnt = 0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (!visited[i][j] && arr[i][j] == 1) {
                    visited[i][j] = true;
                    dfs(i, j);
                    cnt++//dfs로 한번 순회하면 카운트 증가
                }
            }
        }
        cout << cnt << endl;
    }
}
 
cs
728x90

댓글