题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1175
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
YES NO NO NO NO YES
自己做了半天,搞出来个超时的代码,思前想后没有想到好的剪枝办法,于是上网看了下思路,可以在转弯2次的时候判断能否到达终点。
这是自己写的剪枝。。
if(now.change==2){ //改变2次方向后 直接进行判断来剪枝 switch(i){ case 0: case 1: if(x2!=now.x){vis[now.x][now.y]=false; sign=1;} break; case 2: case 3: if(y2!=now.y) {vis[now.x][now.y]=false;sign=1;} break; } }这是别人家的剪枝
if(no.change==2&&no.x!=x2&&no.y!=y2)//如果方向为2,并且该坐标的横纵坐标与终点都不同 return false; //去掉该剪枝超时10000ms 加上218ms ac
在写判断边界条件的judge函数时遇到了错误,就是当 当前点的数字与终点的数字相同时,如果当前点位置不是终点,则不能走;
3 4 5 0 1 0 5 0 0 0 1 4 0 5 4 3 4 1 1 1 1 3 4 2 1 3 4 3 4 2 1 0 0例如这组数据的 3 4 1 1 如果不加上述判断就能通过了;
【源代码】
#include<cstdio> #include<cstring> #include <queue> using namespace std; int n,m; const int maxn = 1010; int dx[4]={0,0,1,-1}; int dy[4]={1,-1,0,0}; int dir[maxn][maxn];//用这个数组记录当前位置的方向 bool vis[maxn][maxn]; int x1,y1,x2,y2; int map[maxn][maxn]; int change; struct node{ int x,y,change; //change 转弯次数 }init; bool judge(node now){ if(now.x<0||now.x>=n||now.y<0||now.y>=m||vis[now.x][now.y]||(map[now.x][now.y]!=map[x1][y1]&&map[now.x][now.y]!=0)) return false; if(map[now.x][now.y]==map[x1][y1]){ if(now.x==x2&&now.y==y2) return true; return false; } return true; } bool dfs(node no){ vis[no.x][no.y]=true; if(no.change>2)//如果方向改变大于2次 return false; if(no.x==x2&&no.y==y2){ return true; } if(no.change==2&&no.x!=x2&&no.y!=y2)//如果方向为2,并且该坐标的横纵坐标与终点都不同 return false; //去掉该剪枝超时10000ms 加上218ms ac node now; for(int i=0;i<4;i++){ now.x=no.x+dx[i]; now.y=no.y+dy[i]; now.change=no.change; if(!judge(now)) continue; dir[now.x][now.y]=i; if(dir[no.x][no.y]!=-1){ //初始位置的 方向设为-1 if(dir[now.x][now.y]!=dir[no.x][no.y]) now.change++; } if(dfs(now)) return true; vis[now.x][now.y]=false; } return false; } int main(){ while(scanf("%d%d",&n,&m)!=EOF&&(n||m)){ for(int i=0;i<n;i++) for(int j=0;j<m;j++){ scanf("%d",&map[i][j]); } int times; scanf("%d",×); for(int i=0;i<times;i++){ scanf("%d%d%d%d",&x1,&y1,&x2,&y2); x1-=1;x2-=1; y1-=1;y2-=1; if(map[x1][y1]!=map[x2][y2]||map[x1][y1]==0||(x1==x2&&y1==y2)) // 一定不能消去的情况 { printf("NO\n"); } else { memset(vis,0,sizeof(vis)); memset(dir,0,sizeof(dir)); init.x=x1; init.y=y1; init.change=0; dir[x1][y1]=-1;//初始位置的方向置为-1 if(dfs(init)) printf("YES\n"); else printf("NO\n"); } } } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/chaiwenjun000/article/details/47271287