L - Elegant Showroom

题目链接
在这里插入图片描述

思路:从给定的点进行bfs,搜索到位于边界上的‘D’就停止,每次取一下最小值。

AC代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <queue>
#define ll long long
#define lowbit(x) ((~x+1)&x)
#define inf 0x3f3f3f3f
using namespace std;
struct node{
    int x,y;
    int dist;
}pos;
int mp[1550][1550],n,m,r,c,ans;
int vis[1550][1550];
char str[1550][1550];
int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};

void bfs() {
    pos.x = r,pos.y=c,pos.dist=1;
    for(int i=0; i<=405; i++) {
        for(int j=0; j<=405; j++) {
            mp[i][j] = inf;
        }
    }
    vis[r][c]=1;
    mp[r][c]=1;
    queue<node>q;
    q.push(pos);
    while(!q.empty()) {
        struct node t = q.front();
        q.pop();
        int dx=t.x,dy=t.y;
        if(dx==n||dx==1||dy==m||dy==1) {
            ans=min(ans,mp[dx][dy]);
        }
        for(int i=0; i<4; i++) {
            int tx,ty;
            tx=dx+dir[i][0];
            ty=dy+dir[i][1];
            if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&str[tx][ty]!='#') {
                struct node nxt;
                if(str[tx][ty]=='D') pos.dist=t.dist;
                else pos.dist=t.dist+1;
                if(mp[tx][ty]>pos.dist) {
                    mp[tx][ty]=pos.dist;
                    pos.x=tx;
                    pos.y=ty;
                    q.push(pos);
                }
            } 
        }
    }
    cout<<ans<<endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin>>n>>m;
    ans = inf;
    for(int i=1; i<=n; i++) {
        for(int j=1; j<=m; j++) {
            cin>>str[i][j];
        }
    }
    cin>>r>>c;
    bfs();
    return 0;
}

这个代码不知道哪错了,快把我逼疯了,++!如有大佬发现,请指正,谢谢!!

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <queue>
#define ll long long
#define lowbit(x) ((~x+1)&x)
#define inf 0x3f3f3f3f
using namespace std;
struct node{
    int x,y;
    int dist;
}pos;
int mp[1550][1550],n,m,r,c,ans;
int vis[1550][1550];
char str[1550][1550];
int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};

void bfs() {
    pos.x = r,pos.y=c,pos.dist=1;
    for(int i=0; i<=405; i++) {
        for(int j=0; j<=405; j++) {
            mp[i][j] = inf;
        }
    }
    vis[r][c]=1;
    mp[r][c]=1;
    queue<node>q;
    q.push(pos);
    while(!q.empty()) {
        struct node t = q.front();
        q.pop();
        int dx=t.x,dy=t.y;
        if(dx==n||dx==1||dy==m||dy==1) {
            ans=min(ans,mp[dx][dy]);
        }
        for(int i=0; i<4; i++) {
            int tx,ty;
            tx=dx+dir[i][0];
            ty=dy+dir[i][1];
            if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&str[tx][ty]!='#') {
                struct node nxt;
                if(!vis[tx][ty]) {
                    vis[tx][ty]=1;
                    nxt.x=tx,nxt.y=ty;
                    if(str[tx][ty]=='c')
                        mp[tx][ty] = mp[dx][dy]+1;
                    else  mp[tx][ty] = mp[dx][dy];
                    q.push(nxt);
                }
                else if(vis[tx][ty]) {
                       	if(mp[dx][dy]+1<mp[tx][ty]) {
                            mp[tx][ty] = mp[dx][dy]+1;
                            q.push(nxt);
                        }
                }
            } 
        }
    }
    cout<<ans<<endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin>>n>>m;
    ans = inf;
    for(int i=1; i<=n; i++) {
        for(int j=1; j<=m; j++) {
            cin>>str[i][j];
        }
    }
    cin>>r>>c;
    bfs();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值