728x90
반응형
C언어로 연습할 겸 푼 문제. 새롭다 다시 익혀야겠다;;
소스 코드
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
2020-01-03
섬의 개수
https://www.acmicpc.net/problem/4963
*/
#include <stdio.h>
int w, h, cnt, map[51][51], visit[51][51];
int dy[] = { -1,-1,-1,0,0,1,1,1 };
int dx[] = { -1,0,1,-1,1,-1,0,1 };
void init(int *, int size);
int check(int y, int x) {
if (!map[y][x] || visit[y][x])
return 0;
visit[y][x] = 1;
for (int i = 0; i < sizeof(dy); i++)
{
int ny = y + dy[i];
int nx = x + dx[i];
if (ny < 0 || nx < 0 || ny >= 51 || nx >= 51)
continue;
if (map[ny][nx] && !visit[ny][nx]) {
check(ny, nx);
}
}
return 1;
}
int main(void) {
while (1) {
cnt = 0;
init(map, sizeof(map) / 4);
init(visit, sizeof(visit) / 4);
scanf("%d %d", &w, &h);
if (w == 0 && h == 0)
return 0;
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
scanf("%d", &map[i][j]);
}
}
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
cnt += check(i, j);
}
}
printf("%d\n", cnt);
}
return 0;
}
void init(int *arr, int size) {
for (int i = 0; i < size; i++)
{
arr[i] = 0;
}
}
|
cs |
728x90
반응형
'Algorithm > 백준(BOJ)' 카테고리의 다른 글
[백준 1012] 유기농 배추 (C, DFS) (0) | 2020.01.05 |
---|---|
[백준 1197] 최소 스패닝 트리 (Java) (0) | 2019.09.23 |
[백준 3425] 고스택 (Java, 시뮬레이션) (0) | 2019.07.26 |
[백준 14889] 스타트와 링크 (Java) (0) | 2019.05.09 |
[백준 17140] 이차원 배열과 연산 (Java) (3) | 2019.05.06 |