首页 > 其他 > 详细

UVa572 - Oil Deposits

时间:2015-09-25 23:03:05      阅读:304      评论:0      收藏:0      [点我收藏+]

解题思路:好久没写搜索了,练练手,陶冶情操。不多说,直接贴代码:

技术分享
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 const int maxn = 105;
 6 int dir[8][2] = {-1, -1, -1, 0, -1, 1, 0, -1,
 7                  0, 1, 1, -1, 1, 0, 1, 1};
 8 char gg[maxn][maxn];
 9 int m, n;
10 
11 void DFS(int x, int y, int id)
12 {
13     if(x < 1 || x > m || y < 1 || y > n || gg[x][y] == *) return ;
14     gg[x][y] = *;
15     for(int i = 0; i < 8; i++)
16     {
17         int xx = x + dir[i][0];
18         int yy = y + dir[i][1];
19 
20         if(xx < 1 || xx > m || yy < 1 || yy > n || gg[xx][yy] == *) continue;
21         DFS(xx, yy, id);
22     }
23     return ;
24 }
25 int main()
26 {
27     int cnt;
28     while(~scanf("%d %d", &m, &n) && m)
29     {
30         memset(gg, #, sizeof(gg));
31         for(int i = 1; i <= m; i++)
32         for(int j = 1; j <= n; j++) scanf(" %c", &gg[i][j]);
33 
34         cnt = 0;
35         for(int i = 1; i <= m; i++)
36         for(int j = 1; j <= n; j++)
37         if(gg[i][j] == @) DFS(i, j, ++cnt);
38         printf("%d\n", cnt);
39     }
40     return 0;
41 }
View Code

 

UVa572 - Oil Deposits

原文:http://www.cnblogs.com/loveprincess/p/4839652.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!