题目链接:https://vjudge.net/problem/HDU-1241
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

题目大意:ztw 同志负责探测地下石油储藏。 ztw现在在一块矩形区域探测石油。他通过专业设备,来分析每个小块中是否蕴藏石油。如果这些蕴藏石油的小方格相邻(横向相邻,纵向相邻,还有对角相邻),那么它们被认为是同一油藏的一部分。在这块矩形区域,可能有很多油藏。你的任务是确定有多少不同的油藏。

输入可能有多个矩形区域(即可能有多组测试)。每个矩形区域的起始行包含 n 和 m,表示行和列的数量,1<=n,m<=100,如果 m =0 表示输入的结束,接下来是n行,每行m个字符。每个字符对应一个小方格,并且要么是 ‘*’,代表没有油,要么是 ‘@’,表示有油。

对于每一个矩形区域,输出油藏的数量。两个小方格是相邻的,当且仅当他们水平或者垂直或者对角线相邻(即8个方向)。

解题思路:对加地图进行搜索,如果发现有石油,就进行BFS,在BFS的过程中,把’@’(石油)变为’*’,每进行一次BFS,ans+1,最后ans的值就是油区数

Cpp Code

#include<iostream>
#include<cstring>
#include<cstdio>
#include<queue>
using namespace std;
const int maxn = 1e2 + 5;
char table[maxn][maxn];//地图
int n, m;
struct node{
    int x, y;
    node(int a,int b){
        x = a, y = b;
    }
};
int dir[8][2] = {{-1, 0}, {-1, 1}, {0, 1}, {1, 1}, {1, 0}, {1, -1}, {0, -1}, {-1, -1}};//八个方向
bool ok(int x,int y){//判断一个点是否可以访问
    if(x>=0&&x<n&&y>=0&&y<m&&table[x][y]=='@'){
        return 1;
    }
    return 0;
}
void bfs(int x,int y){
    node now = node(x, y);
    queue<node> q;
    q.push(now);
    while (!q.empty())
    {
        now = q.front();
        q.pop();
        for (int i = 0; i<8;i++){//搜索八个方向
            int nx = now.x + dir[i][0];
            int ny = now.y + dir[i][1];
            if(ok(nx,ny)){
                table[nx][ny] = '*';
                node nex = node(nx, ny);
                q.push(nex);
            }
        }
    }
}

int main(){
    while ((cin>>n>>m)&&n&&m)
    {
        int ans = 0;
        for (int i = 0; i < n;i++){
            for (int j = 0; j < m; j++){
                cin >> table[i][j];
            }
        }
        for (int i = 0; i < n;i++){
            for (int j = 0; j < m;j++){
                if(table[i][j]=='@'){//搜索到石油,就进行BFS
                    bfs(i, j);
                    ans++;
                }
            }
        }
        cout << ans << endl;
    }
    return 0;
}

**Java Code**
“`Java
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main {
static int maxn=(int)1e2+5;
static char table[][]=new char[maxn][maxn];
static boolean vis[][]=new boolean[maxn][maxn];
static int n,m;
static int dir[][]= {{-1, 0}, {-1, 1}, {0, 1}, {1, 1}, {1, 0}, {1, -1}, {0, -1}, {-1, -1}};
static boolean ok(int x,int y){
if(x>=0&&x<n&&y>=0&&y<m&&table[x][y]==’@’){
return true;
}
return false;
}

static class node{
	int x,y;
	node(){}
	node(int a,int b){
		x=a;
		y=b;
	}
}

static void bfs(int x,int y) {
	node now=new node(x,y);
	Queue<node> q=new LinkedList<node>();
	q.offer(now);
	while(!q.isEmpty()) {
		now=q.poll();
		for(int i=0;i<8;i++) {
			int nx=now.x+dir[i][0];
			int ny=now.y+dir[i][1];
			if(ok(nx,ny)) {
				table[nx][ny] = '*';
                node nex =new node(nx, ny);
                q.offer(nex);
			}
		}
	}
}
public static void main(String[] args) {
	// TODO Auto-generated method stub
	Scanner sc=new Scanner(System.in);
	while(true) {
		int ans=0;
		n=sc.nextInt();
		m=sc.nextInt();
		if((n==0&&m==0)) {
			break;
		}
		for(int i=0;i<n;i++) {
			table[i]=sc.next().toCharArray();
		
		}
		for(int i=0;i<n;i++) {
			for(int j=0;j<m;j++) {
				if(table[i][j]=='@') {
					bfs(i,j);
					ans++;
				}
				
			
			}
		}
		System.out.println(ans);
	}
	
}

}


版权声明:本文为Lrixin原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/Lrixin/p/14302929.html