Problem Description
The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangular region of land at a time, and creates a grid that divides the land into numerous square plots. It then analyzes each plot separately, using sensing equipment to determine whether or not the plot contains oil. A plot containing oil is called a pocket. If two pockets are adjacent, then they are part of the same oil deposit. Oil deposits can be quite large and may contain numerous pockets. Your job is to determine how many different oil deposits are contained in a grid.
Input
The input file contains one or more grids. Each grid begins with a line containing m and n, the number of rows and columns in the grid, separated by a single space. If m = 0 it signals the end of the input; otherwise 1 <= m <= 100 and 1 <= n <= 100. Following this are m lines of n characters each (not counting the end-of-line characters). Each character corresponds to one plot, and is either `*', representing the absence of oil, or `@', representing an oil pocket.
Output
For each grid, output the number of distinct oil deposits. Two different pockets are part of the same oil deposit if they are adjacent horizontally, vertically, or diagonally. An oil deposit will not contain more than 100 pockets.
Sample Input
1 1
*
3 5
*@*@*
**@**
*@*@*
1 8
@@****@*
5 5
****@
*@@*@
*@**@
@@@*@
@@**@
0 0
Sample Output
0
1
2
2
问题翻译:
Description
GeoSurvComp地质调查公司负责探测地下石油储藏。 GeoSurvComp现在在一块矩形区域探测石油,并把这个大区域分成了很多小块。他们通过专业设备,来分析每个小块中是否蕴藏石油。如果这些蕴藏石油的小方格相邻,那么他们被认为是同一油藏的一部分。在这块矩形区域,可能有很多油藏。你的任务是确定有多少不同的油藏。思路:
每走一步,如果自身位置是油田,那么就向前后左右以及对角的方向进行搜索,找是否有油田,如果有,则油田数量加1,并把该位置改变成没有油田的标志,防止重复搜索。
#include
#include
#include
using namespace std;
int count,m,n;//m表示行,n表示列
char s[200][200];
int h[8][2]={{0,1},{0,-1},{1,0},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1}};//8个方向
void dfs(int a,int b)
{
int x,y,k;
s[a][b]='*';
for(k=0;k<8;k++)
{
x=a+h[k][0];
y=b+h[k][1];
if(x>=0&&y>=0&&x { dfs(x,y); } } }//递归搜索 int main() { int i,j; while(~scanf("%d %d",&m,&n)) { getchar();//吞掉换行符 if(m==0&&n==0) { break; } else { for(i=0;i { for(j=0;j { cin>>s[i][j]; } getchar();//吞掉换行符 } count=0; for(i=0;i { for(j=0;j { if(s[i][j]=='@') { dfs(i,j); count++; } } } printf("%d\n",count); } } return 0; }