700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > 双端队列BFS:拖拉机

双端队列BFS:拖拉机

时间:2023-05-31 06:16:33

相关推荐

双端队列BFS:拖拉机

原题链接:/problem/content//

一个裸的双端队列广搜.

#include <iostream>#include <cstring>#include <algorithm>#include <deque>#define x first#define y secondusing namespace std;typedef pair<int, int> PII;const int N = 1010;bool g[N][N], st[N][N];int dist[N][N];int bfs(int sx, int sy){deque<PII> q;q.push_back({sx, sy});memset(dist, 0x3f, sizeof dist);dist[sx][sy] = 0;int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};while (q.size()){auto t = q.front();q.pop_front();// 出队的时候, 判断,这是优化if (st[t.x][t.y]) continue;st[t.x][t.y] = true;// 到了 直接退出if (!t.x && !t.y) break;for (int i = 0; i < 4; i ++ ){int x = t.x + dx[i], y = t.y + dy[i];if (x >= 0 && x < N && y >= 0 && y < N){// 是甘草堆的话,w才为1int w = 0;if (g[x][y]) w = 1;if (dist[x][y] > dist[t.x][t.y] + w){dist[x][y] = dist[t.x][t.y] + w;if (!w) q.push_front({x, y});else q.push_back({x, y});}}}}// 开到原点return dist[0][0];}int main(){int n, sx, sy;scanf("%d%d%d", &n, &sx, &sy);while (n -- ){int x, y;scanf("%d%d", &x, &y);g[x][y] = true;}printf("%d\n", bfs(sx, sy));return 0;}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。