Notice
Recent Posts
Recent Comments
:: ADVANCE ::
[dovelet][DFS] 단지 번호 붙이기 / danji 본문
반응형
dovelet 16 단계 DFS
http://59.23.113.171/30stair/danji/danji.php?pname=danji
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 |
#include <stdio.h>
int map[50][50];
int danji[50][50];
int total = 1;
int count[50];
void dfs(int i, int j)
{
map[i][j] = 0;
danji[i][j] = total;
count[total]++;
if (map[i - 1][j] < 0) dfs(i - 1, j);
if (map[i][j - 1] < 0) dfs(i, j - 1);
if (map[i + 1][j] < 0) dfs(i + 1, j);
if (map[i][j + 1] < 0) dfs(i, j + 1);
return;
}
void sort(void)
{
int i, j, temp1, temp2;
for (i = 1; count[i] != 0; i++) {
j = 1;
if (count[i] < count[i - 1]) {
while (count[j] < count[i]) j++;
temp1 = count[i];
for (; j <= i; j++) {
temp2 = count[j];
count[j] = temp1;
temp1 = temp2;
}
}
}
return;
}
int main(void)
{
int n, i, j, temp;
scanf("%d", &n);
for (i = 1; i <= n; i++) {
for (j = 1; j <= n; j++) {
scanf("%d", &temp);
if (temp == 1) {
map[i][j] = -1;
}
}
}
for (i = 1; i <= n; i++) {
for (j = 1; j <= n; j++) {
if (map[i][j] < 0) {
dfs(i, j);
total++;
}
}
}
sort();
printf("%d\n", total - 1);
for (i = 1; i < total; i++) {
printf("%d\n", count[i]);
}
return 0;
} |
cs |
sort 를 직접 구현
개수를 세어서 배열에 넣고 sort 하는 거 말고
count한 거를 sort하면서 배열에 넣을 수도 있을 듯
반응형
'Algorithm > ES (완전탐색)' 카테고리의 다른 글
[BaekJoon][2823] 유턴 싫어 (0) | 2016.04.11 |
---|---|
[BaekJoon][2816] 디지털 티비 (0) | 2016.04.11 |
[dovelet][BFS] 도망간 소를 잡아라 / catch_cow (0) | 2015.01.16 |
[dovelet][DFS] 최단 거리 미로 / maze (0) | 2015.01.14 |
[ALGOSPOT][stack] Mismatched Brackets (0) | 2015.01.10 |
Comments