반응형
https://www.acmicpc.net/problem/4963
문제를 보고 탐색으로 풀어야겠다고 생각했다면 바로 풀 수 있다.
한가지 조금 다른 문제와 다른거는 대각선으로 땅을 밟을 수 있기 때문에 대각선을 고려해야한다는 것만 주의해주면된다.
기존에 상하좌우를 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<int, int>> 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, false, sizeof(visit));
queue<pair<int, int>> 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!
반응형
'알고리즘 > 백준' 카테고리의 다른 글
백준 18111 마인크래프트 c++ [컴공과고씨] (0) | 2022.03.25 |
---|---|
백준 4375 1 c++ [컴공과고씨] (0) | 2022.03.24 |
백준 2217 로프 c++ [컴공과고씨] (2) | 2022.03.24 |
백준 1758 알바생 강호 c++ [컴공과고씨] (0) | 2022.03.24 |
백준 2748 피보나치 수 2 c++ [컴공과고씨] (0) | 2022.03.22 |