mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
|
#include <stdio.h>
|
||
|
#include <queue>
|
||
|
using namespace std;
|
||
|
const int size = 100;
|
||
|
const int go[4][2] = {
|
||
|
1, 0, -1, 0,
|
||
|
0, 1, 0, -1
|
||
|
};
|
||
|
char a[size][size];
|
||
|
// bool b[size][size];
|
||
|
int x,y, cnt = 1;
|
||
|
typedef struct poi{
|
||
|
int x;
|
||
|
int y;
|
||
|
poi(){x = 0; y = 0;}
|
||
|
poi(int x_, int y_){ x = x_; y = y_;}
|
||
|
} poi;
|
||
|
|
||
|
int main(int argc, char* argv[]){
|
||
|
while(true){
|
||
|
scanf("%i%i", &y, &x);
|
||
|
if(x == 0 && y == 0)
|
||
|
break;
|
||
|
cnt = 1;
|
||
|
poi p;
|
||
|
queue<poi> q;
|
||
|
for(int i = 0; i < x; i++)
|
||
|
scanf("%s", a[i]);
|
||
|
for(int i = 0; i < x; i++)
|
||
|
for(int j = 0; j < y; j++)
|
||
|
if(a[i][j] == '@'){
|
||
|
p = poi(i,j);
|
||
|
}
|
||
|
while (!q.empty()) q.pop();
|
||
|
// printf("x = %i, y = %i", p.x, p.y);
|
||
|
q.push(p);
|
||
|
while(!q.empty()){
|
||
|
p = q.front();
|
||
|
q.pop();
|
||
|
for(int i = 0; i < 4; i++){
|
||
|
p.x += go[i][0];
|
||
|
p.y += go[i][1];
|
||
|
if(p.x < 0 || p.x >= x || p.y < 0 || p.y >= y)
|
||
|
goto error233;
|
||
|
// if(a[p.x][p.y] == '.' && !b[p.x][p.y]) {
|
||
|
if(a[p.x][p.y] == '.') {
|
||
|
q.push(p);
|
||
|
// b[p.x][p.y] = true;
|
||
|
a[p.x][p.y] = '#';
|
||
|
cnt++;
|
||
|
}
|
||
|
error233:
|
||
|
p.x -= go[i][0];
|
||
|
p.y -= go[i][1];
|
||
|
}
|
||
|
}
|
||
|
printf("%i\n", cnt);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|