标签:rip 相等 nbsp ble continue queue turn 其他 经典的
传送门:
http://acm.hdu.edu.cn/showproblem.php?pid=1175
Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 41101 Accepted Submission(s): 10152
#include<bits/stdc++.h> using namespace std; #define max_v 1005 #define INF 100 int G[max_v][max_v];//记录图 int Hash[max_v][max_v];//记录某路径在该点的转向次数 int dir[4][2]= {{-1,0},{0,-1},{1,0},{0,1}}; //方向数组 int n,m; struct node { int x,y,d,turn;//坐标,方向,转向次数 }; queue<node> q; bool bfs(int x1,int y1,int x2,int y2) { node p,t; while(!q.empty()) { p=q.front(); q.pop(); if(p.x==x2&&p.y==y2&&p.turn<=2)//找到了终点 return true; for(int i=0; i<4; i++) //四个方向搜 { t.x=p.x+dir[i][0]; t.y=p.y+dir[i][1]; if(t.x<1||t.y<1||t.x>n||t.y>m) continue; if(p.d==i)//没有转向 { t.turn=p.turn; t.d=p.d; } else { t.turn=p.turn+1; t.d=i; } if(t.turn>2)//转向次数超过两次 continue; if((G[t.x][t.y]==0||(t.x==x2&&t.y==y2))&&t.turn<=Hash[t.x][t.y])//不能走有棋子的点(0代表没有棋子),或者下一步要走的点到了终点,已经转折数小于等于当前转折数 { q.push(t);//满足条件就放入队列 Hash[t.x][t.y]=t.turn;//更新转向次数 } } } return false; } /* 附加条件: ①不能出边界 ②得走值为0的点 ③路径不能转向两次以上 */ int main() { int x1,x2,y1,y2; while(cin>>n>>m) { if(n==0&&m==0) break; for(int i=1; i<=n; i++) { for(int j=1; j<=m; j++) { cin>>G[i][j]; } } int k; cin>>k; for(int i=0; i<k; i++) { cin>>x1>>y1>>x2>>y2; if(G[x2][y2]!=G[x1][y1]||G[x1][y1]==0||G[x2][y2]==0||(x1==x2&&y1==y2))//两点在图上的值不相等或者重合或者某个点没有棋子 { cout<<"NO"<<endl; continue; } for(int i=1; i<=n; i++) { for(int j=1; j<=m; j++) { Hash[i][j]=INF;//转向次数初始化无穷大 } } Hash[x1][y1]=0;//起点 while(!q.empty())//队列清空 { q.pop(); } node t; for(int i=0; i<4; i++) //出发点四个方向的值 { t.d=i; t.turn=0; t.x=x1; t.y=y1; q.push(t); } if(bfs(x1,y1,x2,y2)) cout<<"YES"<<endl; else cout<<"NO"<<endl; } } return 0; }
标签:rip 相等 nbsp ble continue queue turn 其他 经典的
原文地址:https://www.cnblogs.com/yinbiao/p/9349637.html