1016 Red and Black

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;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值