首页 > 代码库 > hdu 1175 bfs+priority_queue
hdu 1175 bfs+priority_queue
连连看
如上图所示如果采用传统bfs的话,如果按照逆时针方向从(1,1)-->(3,4)搜索,会优先选择走拐四次弯的路径导致ans错误;
Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 34028 Accepted Submission(s):
8438
玩家鼠标先后点击两块棋子,试图将他们消去,然后游戏的后台判断这两个方格能不能消去。现在你的任务就是写这个后台程序。
注意:询问之间无先后关系,都是针对当前状态的!
#include<bits/stdc++.h>
using namespace std;
int e[1005][1005],n,m,X1,X2,Y1,Y2;
int fx[4][2]={-1,0,1,0,0,-1,0,1};
bool vis[1005][1005];
struct node
{
int x,y,num,pre;
bool operator<(const node&a)const //设置优先级<的算子,即优先级越小,num越大
{
return num>a.num;
}
};
bool bfs()
{
priority_queue<node> q;
node temp,tmp;
temp.x=X1,temp.y=Y1,temp.pre=-1,temp.num=0;
q.push(temp);
while(!q.empty()){
tmp=q.top();
q.pop();
for(int i=0;i<4;i++){
temp=tmp;
int dx=temp.x+fx[i][0];
int dy=temp.y+fx[i][1];
temp.x=dx,temp.y=dy;
if(tmp.pre==-1) temp.pre=i;
else{
temp.pre=i;
if(tmp.pre<=1&&i>1) temp.num++; //由上下变为左右或左右变为上下时,转弯次数+1
if(tmp.pre>1&&i<=1) temp.num++;
}
if(dx==X2&&dy==Y2&&temp.num<=2) return true;
if(dx<1||dy<1||dx>n||dy>m||vis[dx][dy]||temp.num>2||e[dx][dy]) continue;
vis[dx][dy]=1;
q.push(temp);
}
}
return false;
}
int main()
{
int i,j,flag,t;
while(cin>>n>>m&&n&&m){
for(i=1;i<=n;i++)
for(j=1;j<=m;j++)
scanf("%d",&e[i][j]);
scanf("%d",&t);
while(t--){memset(vis,0,sizeof(vis));
scanf("%d%d%d%d",&X1,&Y1,&X2,&Y2);
vis[X1][Y1]=1;
if(e[X1][Y1]!=e[X2][Y2]||e[X1][Y1]==0||e[X2][Y2]==0||(X1==X2&&Y1==Y2)) {puts("NO");continue;}
bfs()?puts("YES"):puts("NO");
}
}
return 0;
}
hdu 1175 bfs+priority_queue