1016 Red and Black
题意:H*W的房间中,瓷砖有红黑两色,一人在黑色上,求他能够经过最多的黑色瓷砖共有多少块。From a tile, he can move to one of four adjacent tiles.即,他只能走上下左右。
思路:记录下初始位置,不断的搜索,此问题没有出口,直至统计可走的最多瓷砖块。
感想:W and H are the numbers of tiles in the x-and y- directions, respectively. H行,W列这是个坑,开始一直没有注意,输入都出了问题,费了很长时间。
#include<iostream>
#include<string.h>
#include<stdio.h>
#include<queue>
using namespace std;
int w,h,ax,ay,step;
bool visit[21][21];
char map[21][21];
struct node{
int x,y;
};
int dri[4][2]={{-1,0},{0,1},{1,0},{0,-1}};
bool check(int a,int b)
{
if(map[a][b]!='#'&&a>=1&&a<=w&&b>=1&&b<=h)return true;
return false;
}
void bfs(){
node p,q;
p.x=ax; p.y=ay;
queue<node> b;
b.push(p);
visit[ax][ay]=true;
while(!b.empty()){
p=b.front();
b.pop();
step++;
for(int i=0;i<4;i++){
q.x=p.x+dri[i][0];
q.y=p.y+dri[i][1];
if(check(q.x,q.y)&&!visit[q.x][q.y]){
visit[q.x][q.y]=true;
b.push(q);
}
}
}
}
int main(){
int i,j;
while(cin>>w>>h){
if(w==0||h==0) break;
step=0;
memset(visit,false,sizeof(visit));
for(i=1;i<=h;i++)
for(j=1;j<=w;j++){
cin>>map[j][i];
if(map[j][i]=='@'){
ax=j; ay=i;
}
}
bfs();
cout<<step<<endl;
}
return 0;
}