日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdu 2579 BFS

發布時間:2023/12/4 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdu 2579 BFS 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

http://acm.hdu.edu.cn/showproblem.php?pid=2579

題目大意:給定 r * c 的迷宮,還有一個整數 k 。迷宮中“.”表示可以走,“#”表示墻,當時間為k的倍數時,這些墻會消失。求從起點“Y”到終點“G”的最短時間。(人不能呆在一點不動)。

?

#include<iostream> #include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h> #include<queue> #include<algorithm> #define N 105 using namespace std; char map[N][N]; int step[N][N][10];//多加一維,記錄(time%k) int r,c,k,x_s,y_s,x_e,y_e; int dir[4][2]={0,1,0,-1,1,0,-1,0}; struct node {int x,y,mod; }; int BFS() {int i;queue<node>q;node now,next;now.x=x_s;now.y=y_s;now.mod=0;memset(step,-1,sizeof(step));step[now.x][now.y][now.mod]=0;q.push(now);while(!q.empty()){now=q.front();q.pop();if(now.x==x_e && now.y==y_e) return step[now.x][now.y][now.mod];for(i=0;i<4;i++){next.x=now.x+dir[i][0];next.y=now.y+dir[i][1];next.mod=(now.mod+1)%k;if(next.x<0 || next.x>=r || next.y<0 ||next.y>=c) continue;if(step[next.x][next.y][next.mod]!=-1) continue;if(map[next.x][next.y]=='#' && next.mod!=0) continue;step[next.x][next.y][next.mod]=step[now.x][now.y][now.mod]+1;q.push(next);}}return -1; } int main() {int T,i,j,ans;scanf("%d",&T);while(T--){scanf("%d%d%d",&r,&c,&k);for(i=0;i<r;i++){scanf("%s",map[i]);for(j=0;map[i][j];j++){if(map[i][j]=='Y'){x_s=i;y_s=j;map[i][j]='.';}if(map[i][j]=='G'){x_e=i;y_e=j;map[i][j]='.';}}}ans=BFS();if(ans==-1) printf("Please give me another chance!\n");else printf("%d\n",ans);}return 0; }


?

?

總結

以上是生活随笔為你收集整理的hdu 2579 BFS的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。