HDU1728-逃離迷宮-BFS
阿新 • • 發佈:2017-07-07
span () 的人 b+ 字符 代碼 sample other 題意
第1行為一個整數t (1 ≤ t ≤ 100),表示測試數據的個數,接下來為t組測試數據,每組測試數據中,
第1行為兩個整數m, n (1 ≤ m, n ≤ 100),分別表示迷宮的行數和列數,接下來m行,每行包括n個字符,其中字符‘.‘表示該位置 為空地,字符‘*‘表示該位置為障礙,輸入數據中只有這兩種字符,每組測試數據的最後一行為5個整數k, x1, y1, x2, y2 (1 ≤ k ≤ 10, 1 ≤ x1, x2 ≤ n, 1 ≤ y1, y2 ≤ m),其中k表示gloria最多能轉 的彎數,(x1, y1), (x2, y2)表示兩個位置,其中x1,x2對應列,y1, y2對應行。 Output
每組測試數據對應為一行,若gloria能從一個位置走到另外一個位置,輸出“yes”,否則輸出“no”。
Sample Input
2
5 5
...**
*.**.
.....
.....
*....
1 1 1 1 3
5 5
...**
*.**.
.....
.....
*....
2 1 1 1 3
Sample Output
no
yes
題意好理解,坑就是行和列要看清,會掉進去的。
bfs,走到不能走的,然後再往下一步走就是轉一個彎。
貼大佬代碼:
逃離迷宮
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 27258 Accepted Submission(s): 6661
第1行為兩個整數m, n (1 ≤ m, n ≤ 100),分別表示迷宮的行數和列數,接下來m行,每行包括n個字符,其中字符‘.‘表示該位置 為空地,字符‘*‘表示該位置為障礙,輸入數據中只有這兩種字符,每組測試數據的最後一行為5個整數k, x1, y1, x2, y2 (1 ≤ k ≤ 10, 1 ≤ x1, x2 ≤ n, 1 ≤ y1, y2 ≤ m),其中k表示gloria最多能轉 的彎數,(x1, y1), (x2, y2)表示兩個位置,其中x1,x2對應列,y1, y2對應行。 Output
#include<bits/stdc++.h> using namespacestd; const int N=100; char mp[N][N]; int visited[N][N]; int n,m,xx,yy,x2,y2,k; int _x[4]={1,0,-1,0}; int _y[4]={0,1,0,-1}; struct node{ int x,y; int step; }G; int check(int x,int y){ if(x>=1&&x<=m&&y>=1&&y<=n&&mp[x][y]!=‘*‘){ return 1; } return 0; } void BFS(){ int flag=0; queue<node>Q; Q.push(G); node first,next; while(!Q.empty()){ first=Q.front(); Q.pop(); if(first.x==y2&&first.y==x2&&first.step<=k){ flag=1; break; } next.step=first.step+1; for(int i=0;i<4;i++){ int a=first.x+_x[i]; int b=first.y+_y[i]; while(check(a,b)){ if(visited[a][b]==0){ visited[a][b]=1; next.x=a; next.y=b; Q.push(next); } a=a+_x[i]; b=b+_y[i]; } } } if(flag==1)cout<<"yes"<<endl; else cout<<"no"<<endl; } int main(){ int t; scanf("%d",&t); while(t--){ memset(visited,0,sizeof(visited)); scanf("%d%d",&m,&n); for(int i=1;i<=m;i++){ getchar(); for(int j=1;j<=n;j++){ scanf("%c",&mp[i][j]); } } scanf("%d%d%d%d%d",&k,&xx,&yy,&x2,&y2); G.x=yy; G.y=xx; G.step=-1; visited[G.x][G.y]=1; BFS(); } return 0; }
。。。
HDU1728-逃離迷宮-BFS