所给实例的“5 5 ”第二个5后还有一个空格,测试的时候出错,但后台数据没有那个空格,可以过
#include<stdio.h>
#include<queue>
using namespace std;
struct node
{
int x,y;
};
char map[100][100];
int n,m;
int dir[8][2]={-1,-1, 0,-1, 1,-1, -1,0, 1,0, -1,1, 0,1, 1,1};
void bfs(int i,int j)
{
int k;
map[i][j]='*';
queue<node>q;
node cur,next;
cur.x=i;
cur.y=j;
q.push(cur);
while(!q.empty())
{
cur=q.front();
q.pop();
for(k=0;k<8;k++)
{
next.x=cur.x+dir[k][0];
next.y=cur.y+dir[k][1];
if(next.x>=0&&next.x<m&&next.y>=0&&next.y<n)
{
if(map[next.x][next.y]=='@')
{
map[next.x][next.y]='*';
q.push(next);
}
}
}
}
}
int main()
{
int i,j,sum=0;
while(scanf("%d%d",&m,&n),m)
{
getchar();
sum=0;
for(i=0;i<m;i++)
gets(map[i]);
for(i=0;i<m;i++)
for(j=0;j<n;j++)
if(map[i][j]=='@')
{
sum++;
bfs(i,j);
}
printf("%d\n",sum);
}
return 0;
}