알고리즘/백준

백준 4963 섬의 개수 c++ [컴공과고씨]

시간빌게이츠 2022. 3. 24. 20:30
반응형

https://www.acmicpc.net/problem/4963

 

4963번: 섬의 개수

입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스의 첫째 줄에는 지도의 너비 w와 높이 h가 주어진다. w와 h는 50보다 작거나 같은 양의 정수이다. 둘째 줄부터 h개 줄에는 지도

www.acmicpc.net

문제를 보고 탐색으로 풀어야겠다고 생각했다면 바로 풀 수 있다.

한가지 조금 다른 문제와 다른거는 대각선으로 땅을 밟을 수 있기 때문에 대각선을 고려해야한다는 것만 주의해주면된다.

기존에 상하좌우를 dx[] = {0,0,-1,1} = dy[] = {1,-1,0,0} 이런식으로 4번을 반복해서 움직여주었다면 이번거는 

dx[] = {0,0,-1,1, 1,1,-1,-1} = dy[] = {1,-1,0,0, 1,-1,-1,1} 대각선을 고려해 8번을 반복해서 움직여주어야한다. 

땅만 갈수있도록 탐색한 후 bfs가 몇번 호출 되어지는지 확인하면 섬의 개수를 구할 수 있다.

 

 

전체코드

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
#include <iostream>
#include <queue>
#include <string.h>
 
using namespace std;
int map[51][51];
bool visit[51][51];
int w, h;
int dx[] = {0,0,-1,1,1,1,-1,-1}; // 대각선까지 고려해아함
int dy[] = {1,-1,0,0,1,-1,-1,1};
int cnt = 0;
void bfs(int a, int b){
    queue<pair<intint>> q;
    q.push(make_pair(a, b));
    while(!q.empty()){
        int x = q.front().first;
        int y = q.front().second;
        q.pop();
        for (int i = 0; i < 8;i++){ // 대각선 처리 8번 반복
            int nx = x + dx[i];
            int ny = y + dy[i];
 
            if(nx >= 0 && nx < w && ny >=0 && ny < h){
                if(!visit[ny][nx] && map[ny][nx] == 1){
                    q.push(make_pair(nx, ny));
                    visit[ny][nx] = true;
                }
            }
        }
    }
}
int main(){
    while(1){
        cin >> w >> h;
        if(w==0 && h==0){
            break;
        }
        cnt = 0;
        memset(visit, falsesizeof(visit));
        queue<pair<intint>> temp;
        for (int i = 0; i < h; i++){
            for (int j = 0; j < w;j++){
                cin >> map[i][j];
                if(map[i][j]==1){
                    temp.push(make_pair(j,i)); // land만 저장
                } 
            }
        }
        while(!temp.empty()){// land를 다 밟을 때까지
            int tempx = temp.front().first;
            int tempy = temp.front().second;
            if(!visit[tempy][tempx]){ // 밟지 않은 땅일 경우
                visit[tempy][tempx] = true;
                bfs(tempx, tempy); // bfs호출
                cnt++//bfs호출 횟수가 정답
            }
            temp.pop();
        }
        cout << cnt << '\n';
    }
    return 0;
}
cs

 

사용 알고리즘 : bfs

 

 

yea!

반응형