HDOJ1175 宽搜BFS基础入门题(有详细注释的代码)

连连看

Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 37107    Accepted Submission(s): 9176


Problem Description
“连连看”相信很多人都玩过。没玩过也没关系,下面我给大家介绍一下游戏规则:在一个棋盘中,放了很多的棋子。如果某两个相同的棋子,可以通过一条线连起来(这条线不能经过其它棋子),而且线的转折次数不超过两次,那么这两个棋子就可以在棋盘上消去。不好意思,由于我以前没有玩过连连看,咨询了同学的意见,连线不能从外面绕过去的,但事实上这是错的。现在已经酿成大祸,就只能将错就错了,连线不能从外围绕过。
玩家鼠标先后点击两块棋子,试图将他们消去,然后游戏的后台判断这两个方格能不能消去。现在你的任务就是写这个后台程序。
 

Input
输入数据有多组。每组数据的第一行有两个正整数n,m(0 注意:询问之间无先后关系,都是针对当前状态的!
 

Output
每一组输入数据对应一行输出。如果能消去则输出"YES",不能则输出"NO"。
 

Sample Input
 
   
3 4 1 2 3 4 0 0 0 0 4 3 2 1 4 1 1 3 4 1 1 2 4 1 1 3 3 2 1 2 4 3 4 0 1 4 3 0 2 4 1 0 0 0 0 2 1 1 2 4 1 3 2 3 0 0
 

Sample Output
 
   
YES NO NO NO NO YES
 

Author
lwg
 

Recommend
We have carefully selected several similar problems for you:   1180  1072  1026  1240  1195 


这题思路清晰,宽搜解题。其实深搜也可以,有兴趣的同学自己尝试。

贴代码,已做好详细注释:
#include 
#include 
#include 
#include 
#include 
using namespace std;

const int maxn = 1005;
int dx[]={0,0,1,-1};
int dy[]={1,-1,0,0};
int a[maxn][maxn],b[maxn][maxn],n,m;
int x1,x2,y2,y1,flag;
struct node{
    int x,y,dir,num;
}p,q;


bool check(){
   if (q.num>3) return 0;
   if (q.x<1 || q.y<1 || q.x>n || q.y>m ) return 0;
   if (a[q.x][q.y]!=0 &&(q.x!=x2 || q.y!=y2)) return 0;
   return 1;
}

void bfs(){
   p.x=x1;
   p.y=y1;
   p.dir=-1; //初始方向为-1,所以判断方向终止条件为不超过3
   p.num=0;

   queueQ;
   Q.push(p); //入队
   while(!Q.empty()){
       p=Q.front(); //取队首元素
       if (p.x==x2 && p.y==y2) {
          flag=1;
          return;
       }
       Q.pop(); //出队
       for (int i=0;i<4;i++){
          q=p;
          q.x+=dx[i];
          q.y+=dy[i];
          if (q.dir!=i) {
                q.num++;
                q.dir=i; //改变方向
          }
          if (check()) {
             a[q.x][q.y]=1; //修改地图
             Q.push(q); //符合条件入队
          }
       }
   }
}

int main(){
    while(cin>>n>>m && n && m){
        for (int i=1;i<=n;i++){
            for (int j=1;j<=m;j++) scanf("%d",&a[i][j]);
        }
        memcpy(b,a,sizeof(a)); //因为有多次询问,所以保存好地图
        int time;
        cin>>time;
        while(time--){
            scanf("%d %d %d %d",&x1,&y1,&x2,&y2);
            flag=0;
            if(x1==y1 && x2==y2) { //这个判断很重要
                printf("NO\n");
                continue;
            }
            if (a[x1][y1]!=a[x2][y2] || a[x1][y1]==0 || a[x2][y2]==0) {
                printf("NO\n");
                continue;
            }
            bfs();
            memcpy(a,b,sizeof(a));
            if (flag) printf("YES\n");
            else printf("NO\n");
        }
    }
    return 0;
}


 

你可能感兴趣的:(宽搜)