poj2312

poj2312

priority_queue的bfs

priority_queue的bfs相当于使用了dijkstra的思想。

poj2312
poj2312
View Code

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
using namespace std;

#define maxn 305

struct Point
{
    int x, y, w;
}s, t;

int n, m;
char map[maxn][maxn];
bool vis[maxn][maxn];
int dir[4][2] = {
    {
    1,0},{-1,0},{
    0,1},{
    0,-1}};

bool operator < (const Point &a, const Point &b)
{
    return a.w > b.w;
}

void input()
{
    for (int i = 0; i < n; i++)
        scanf("%s", map[i]);
}

void work()
{
    for (int i = 0; i < n; i++)
        for (int j = 0; j < m; j++)
        {
            if (map[i][j] == 'Y')
            {
                s.x = i;
                s.y = j;
                s.w = 0;
                map[i][j] = 'E';
            }
            if (map[i][j] == 'T')
            {
                t.x = i;
                t.y = j;
                map[i][j] = 'E';
            }
        }
}

bool ok(Point a, int &step)
{
    if (a.x < 0 || a.y < 0 || a.x >= n || a.y >= m)
        return false;
    if (vis[a.x][a.y])
        return false;
    if (map[a.x][a.y] == 'S' ||map[a.x][a.y] == 'R')
        return false;
    if (map[a.x][a.y] == 'E')
    {
        step = 1;
        return true;
    }
    step = 2;
    return true;
}

int bfs()
{
    priority_queue <Point> pq;
    memset(vis, 0, sizeof(vis));
    pq.push(s);
    vis[s.x][s.y] = true;
    while (!pq.empty())
    {
        Point u = pq.top();
        pq.pop();
        if (u.x == t.x && u.y == t.y)
            return u.w;
        Point v;
        for (int i = 0; i < 4; i++)
        {
            v.x = u.x + dir[i][0];
            v.y = u.y + dir[i][1];
            int step;
            if (ok(v, step))
            {
                v.w = u.w + step;
                pq.push(v);
                vis[v.x][v.y] = true;
            }
        }
    }
    return -1;
}

int main()
{
    //freopen("t.txt", "r", stdin);
    while (scanf("%d%d", &n, &m), n | m)
    {
        input();
        work();
        printf("%d\n", bfs());
    }
    return 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110368.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 内网穿透 隧道_ping隧道

    内网穿透 隧道_ping隧道本文研究ICMP隧道的一个工具,icmp_tran

    2022年10月18日
  • SSM整合,非常详细的SSM整合[通俗易懂]

    SSM整合,非常详细的SSM整合[通俗易懂]对于ssm框架网上有很多,这里只是自己为大家提供的一个ssm整合框架参考分享,这个前提是基于maven的管理工具写的,如果觉得写得不好,博主这边已经把代码上传了:不妨可以参考代码再理解学习:https://download.csdn.net/download/qq_30764991/11012764如果觉得文章不错,对你有帮助,请作者喝杯咖啡,谢谢!如果对您有帮助,请多多支持.多少都…

  • mysql longtext问题

    mysql longtext问题各位大神们,我把数据库中content的类型设置成了text了,然后我像里面插入数据,为什么我用select查询去没有结果只显示blob具体的如图所示1234

  • matlab plot函数详解_MATLAB的plot

    matlab plot函数详解_MATLAB的plot本文介绍了MATLAB中plot函数的用法,方便日后适用

    2022年10月16日
  • 图解MySQL 内连接、外连接、左连接、右连接、全连接……太多了

    图解MySQL 内连接、外连接、左连接、右连接、全连接……太多了用两个表(a_table、b_table),关联字段a_table.a_id和b_table.b_id来演示一下MySQL的内连接、外连接(左(外)连接、右(外)连接、全(外)连接)。MySQL版本:Serverversion:5.6.31MySQLCommunityServer(GPL)数据库表:a_table、b_table主题:内连接、左连接(左外连

  • java 基本类型 引用_语法重点

    java 基本类型 引用_语法重点Java引用类型引用数据类型:数组,类,接口。class作为成员变量类作为成员变量时,对它进行赋值的操作,实际上,是赋给它该类的一个对象。在这里插入代码片interface作为成员变量在这里插入代码片interface作为方法参数和返回值类型接口作为参数时,传递它的子类对象。接口作为返回值类型时,返回它的子类对象。在这里插入代码片…

    2022年10月19日

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号