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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

BFS HDOJ 2102 A计划

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

?

題目傳送門

題意:中文題面

分析:雙層BFS,之前寫過類似的題.總結坑點:

  1.步數小于等于T都是YES  2. 傳送門的另一側還是傳送門或者墻都會死  3. 走到傳送門也需要一步

?

#include <bits/stdc++.h> using namespace std;char maze[2][11][11]; int dx[4] = {-1, 1, 0, 0}; int dy[4] = {0, 0, -1, 1}; int n, m, tot; bool vis[2][11][11]; struct Point {int x, y, z, step;Point () {}Point (int x, int y, int z, int step) : x (x), y (y), z (z), step (step) {} }; Point s, e;bool check(int x, int y, int z) {if (x < 1 || x > n || y < 1 || y > m || vis[z][x][y] || maze[z][x][y] == '*') return false;else return true; }bool BFS(void) {memset (vis, false, sizeof (vis));int res = 0x3f3f3f3f;queue<Point> que; que.push (s);vis[s.z][s.x][s.y] = true;while (!que.empty ()) {Point u = que.front (); que.pop ();if (u.x == e.x && u.y == e.y && u.z == e.z) {res = min (res, u.step); continue;}for (int i=0; i<4; ++i) {int tx = u.x + dx[i], ty = u.y + dy[i], tz = u.z;if (!check (tx, ty, tz)) continue;if (maze[tz][tx][ty] == '#') {if (maze[1-tz][tx][ty] == '*' || maze[1-tz][tx][ty] == '#' || vis[1-tz][tx][ty]) continue;vis[1-tz][tx][ty] = true;que.push (Point (tx, ty, 1 - tz, u.step + 1));continue;}vis[tz][tx][ty] = true;que.push (Point (tx, ty, tz, u.step + 1));}}return res <= tot; }int main(void) {int T; scanf ("%d", &T);while (T--) {scanf ("%d%d%d", &n, &m, &tot);for (int k=0; k<2; ++k) {if (k == 1) getchar ();for (int i=1; i<=n; ++i) {scanf ("%s", maze[k][i] + 1);for (int j=1; j<=m; ++j) {if (maze[k][i][j] == 'S') {s = Point (i, j, k, 0);}else if (maze[k][i][j] == 'P') {e = Point (i, j, k, 0);}}}}if (BFS ()) puts ("YES");else puts ("NO");}return 0; }

  

?

轉載于:https://www.cnblogs.com/Running-Time/p/4982500.html

總結

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

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