栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

AcWing 175. 电路维修

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

AcWing 175. 电路维修

对于路径值都是0或1是,用双端队列宽搜,值为0的点加入对头优先遍历,值为1的点加入队尾后遍历,保证单调性

#include
using namespace std;

typedef pair PII;
const int N = 550;
char g[N][N];
int T,n,m;
int d[N][N];
deque q;

int dx[]={-1,0,0,1,-1,-1,1,1},dy[]={0,-1,1,0,-1,1,-1,1};

int bfs(int x,int y)
{
    memset(d,0,sizeof d);
    q.clear();
    d[x][y]=1;    
    if(g[x][y]=='/')g[x][y]='\',d[x][y]++;
    q.push_front({x,y});
    while(!q.empty())
    {
        auto t=q.front();
        q.pop_front();
        if(t.first==n-1&&t.second==m-1)return d[t.first][t.second]-1;
        for(int i=0;i<8;i++)
        {
            int vx=t.first+dx[i],vy=t.second+dy[i];
            if(vx<0||vx>=n||vy<0||vy>=m||d[vx][vy])continue;
            if(i<4&&g[vx][vy]!=g[t.first][t.second])
            {
                d[vx][vy]=d[t.first][t.second];
                q.push_front({vx,vy});
            }
            else if(i<4&&g[vx][vy]==g[t.first][t.second])
            {
                if(g[t.first][t.second]!='/')g[vx][vy]='/';
                else g[vx][vy]='\';
                d[vx][vy]=d[t.first][t.second]+1;
                q.push_back({vx,vy});
            }
            else if((i==4||i==7)&&g[t.first][t.second]=='\'
            &&g[vx][vy]==g[t.first][t.second])
            {
                d[vx][vy]=d[t.first][t.second];
                q.push_front({vx,vy});
            }
            else if((i==4||i==7)&&g[t.first][t.second]=='\'
            &&g[vx][vy]!=g[t.first][t.second])
            {
                g[vx][vy]='\';
                d[vx][vy]=d[t.first][t.second]+1;
                q.push_back({vx,vy});
            }
            else if((i==5||i==6)&&g[t.first][t.second]=='/'
            &&g[vx][vy]==g[t.first][t.second])
            {
                d[vx][vy]=d[t.first][t.second];
                q.push_front({vx,vy});
            }
            else if((i==5||i==6)&&g[t.first][t.second]=='/'
            &&g[vx][vy]!=g[t.first][t.second])
            {
                g[vx][vy]='/';
                d[vx][vy]=d[t.first][t.second]+1;
                q.push_back({vx,vy});
            }
        }
    }
}

int main()
{
    cin>>T;
    while(T--)
    {
        cin>>n>>m;
        for(int i=0;i
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/290176.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号