maze(bfs搜索)

maze

https://ac.nowcoder.com/acm/problem/15665


题目:

一个n*m的迷宫。问从起点走到终点最短用时。往上下左右走1格花费1s。用一次传送门花费3s。


做法:

简单题。从起点开始bfs搜到达所有点的最短用时就好了。从每个点转移到上下左右位置以及该点可以开启的传送门的位置。题目不难,细节比较多一点。
可以看看我的写法,用优先队列优化bfs。


代码:

#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false), cin.tie(0)
#define debug(a) cout << #a ": " << a << endl
using namespace std;
typedef long long ll;
const int N = 310;
const int inf = 0x3f3f3f3f;
const int dx[] = {0,1,0,-1};
const int dy[] = {1,0,-1,0};
char str[N][N];
int n, m, q;
struct node{
    int x, y, step;
    node(int x = 0, int y = 0, int s = 0):x(x),y(y),step(s){}
    bool operator < (const node& rh)const{
        return step > rh.step;
    }
}s, t;
vector <pair<int,int> > tp[N*N];
int tim[N][N];
int get(int x, int y){
    return (x-1)*m+y;
}
void bfs(void){
    memset(tim, inf, sizeof tim);
    priority_queue<node> q;
    s.step = 0;
    q.push(s);
    tim[s.x][s.y] = 0;
    while (!q.empty()){
        node u = q.top(); q.pop();
        if (tim[u.x][u.y] != u.step) continue;
        for (int i = 0; i < 4; ++i){
            int x = u.x+dx[i], y = u.y+dy[i];
            if (x < 1 || x > n || y < 1 || y > m) continue;
            if (str[x][y] == '#') continue;
            if (tim[x][y] > u.step+1){
                tim[x][y] = u.step+1;
                q.push(node(x, y, u.step+1));
            }
        }
        int h = get(u.x, u.y);
        for (int i = 0; i < tp[h].size(); ++i){
            int x = tp[h][i].first, y = tp[h][i].second;
            if (str[x][y] == '#') continue;
            if (tim[x][y] > u.step+3){
                tim[x][y] = u.step+3;
                q.push(node(x, y, u.step+3));
            }
        }
    }
}
int main(void){ 
    IOS;
    while (cin >> n >> m >> q){
        for (int i = 1; i <= n; ++i){
            cin >> (str[i]+1);
            for (int j = 1; j <= m; ++j){
                if (str[i][j] == 'S'){
                    s = node(i, j, 0);
                }else if (str[i][j] == 'T'){
                    t = node(i, j, 0);
                }
            }
        }
        for (int i = 1; i <= get(n, m); ++i) tp[i].clear();
        for (int i = 1; i <= q; ++i){
            int x1, y1, x2, y2;
            cin >> x1 >> y1 >> x2 >> y2;
            x1++, y1++, x2++, y2++;
            tp[get(x1, y1)].push_back(make_pair(x2, y2)); 
        }
        bfs();
        if (tim[t.x][t.y] == inf) cout << -1 << endl;
        else cout << tim[t.x][t.y] << endl;
    }
    return 0;
}
全部评论

相关推荐

工作基本定了,比较满意。这深度学习真是难搞啊,论文看不懂,代码看不懂,不会改,创新点???&nbsp;还有一个月中期,怎么搞,已经抑郁了,没有小论文要求,我真是非常幸运了,不然就我这科研能力…………&nbsp;感觉自己对自己失去信心,无时无刻不在否定自己取得一些成绩都是运气好罢了,真的能顺利毕业吗?严重内耗、无力感爆棚啊…………
AI牛可乐:哎呀,听起来你最近压力好大呀,毕业论文和工作的双重压力一定让你感觉像是背了两座山呢。深度学习确实挺复杂的,就像是要在一片迷雾中找到出路一样。但是,你已经很棒了,工作都定好了,这是很大的成就呢! 论文的事情,别太担心。每个人都有看不懂代码和论文的时候,这是正常的。至于创新点嘛,有时候灵感就像小猫一样,需要一点一点地哄出来的。你可以先试试把你看过的资料整理一下,说不定就能找到新的思路呢。 中期答辩前,你可以列个计划,一步一步来,把大问题分解成小问题,一点一点克服。记得,你不是一个人在战斗,你的导师、同学都是你的战友哦。 至于信心嘛,别否定自己,每个人都会有低谷的时候。你已经取得的成绩,都是你实力的体现。毕业不是问题,只要你不放弃,就一定能顺利走过去的。加油哦,我相信你可以的! 对了,如果你愿意的话,可以点击我的头像,我们私信聊,也许我能帮你出出主意,或者就是简单地聊聊天,分散一下你的注意力也好呀。🐮💪🌟
点赞 评论 收藏
分享
找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务