电路维修bfs

题目描述
译自 BalticOI 2011 Day1 T3「Switch the Lamp On」
有一种正方形的电路元件,在它的两组相对顶点中,有一组会用导线连接起来,另一组则不会。
有 N\times M 个这样的元件,你想将其排列成 N 行 M 列放在电路板上。电路板的左上角连接电源,右下角连接灯泡。

lamp.png

试求:至少要旋转多少个正方形元件才能让电源与灯泡连通,若无解则输出 \texttt{NO SOLUTION}。

Casper is designing an electronic circuit on a N ×M rectangular grid plate. There are N ×M square tiles that are aligned to the grid on the plate. Two (out of four) opposite corners of each tile are connected by a wire.
A power source is connected to the top left corner of the plate. A lamp is connected to the bottom right corner of the plate. The lamp is on only if there is a path of wires connecting power source to lamp. In order to switch the lamp on, any number of tiles can be turned by 90° (in both directions).
In the picture above the lamp is off. If any one of the tiles in the second column from the right is turned by 90° , power source and lamp get connected, and the lamp is on.
Write a program to find out the minimal number of tiles that have to be turned by 90° to switch the lamp on.

输入格式
第一行有两个整数 N 和 M。
在接下来的 N 行中,每行有 M 个字符。每个字符均为 \ 或 /,表示正方形元件上导线的连接方向。

The first line of input contains two integer numbers N and M, the dimensions of the plate. In each of the following N lines there are M symbols – either \ or / – which indicate the direction of the wire connecting the opposite vertices of the corresponding tile.

输出格式
输出共一行,若有解则输出一个整数,表示至少要旋转多少个正方形元件才能让电源与灯泡连通;若无解则输出 NO SOLUTION。

There must be exactly one line of output. If it is possible to switch the lamp on, this line must contain only one integer number: the minimal number of tiles that have to be turned to switch on the lamp. If it is not possible, output the string: NO SOLUTION

样例
输入
3 5
\/\
\///
/\\
输出
1

完整代码

#include <bits/stdc++.h>
#define x first
#define y second
using namespace std;
typedef pair<int, int> PII;
deque<PII> q;
const int N = 510;
int n, m;
int dist[N][N];
bool st[N][N];
char g[N][N];
char cs[] = "\\/\\/";
int dx[4] = {-1, -1, 1, 1}, dy[4] = {-1, 1, 1, -1};
int ix[4] = {-1, -1, 0, 0}, iy[4] = {-1, 0, 0, -1};
int bfs()
{
    memset(dist,0x3f,sizeof dist);
    memset(st,0,sizeof st);
    dist[0][0]=0;//0,0这个点的距离为0
    q.push_back({0, 0});
    while(q.size())
    {
        auto t=q.front();
        q.pop_front();
        if(st[t.x][t.y]==true)    
			continue;
        st[t.x][t.y] = true;  
        for (int i=0;i<4;i++)
        {
            int a=t.x+dx[i],b=t.y+dy[i];
            if(a<0||a>n||b< 0||b>m)    
				continue;
            int ca=t.x+ix[i],cb=t.y+iy[i];
            int d=dist[t.x][t.y]+(g[ca][cb]!=cs[i]);//看看当前的路是不是能走,能直接走就是0,否则要转一下就是1   
            if(d<dist[a][b])
            {
                dist[a][b]=d;
                if(g[ca][cb]!=cs[i]) 
					 q.push_back({a, b});//说明路径增加了1放到后面一层
                else    
					q.push_front({a, b});
            }
        }
    }
    return dist[n][m];
}
int main()
{
     scanf("%d%d",&n,&m);
     for (int i=0;i<n;i++) scanf("%s",g[i]);
     int t=bfs(); 
     if (t == 0x3f3f3f3f) puts("NO SOLUTION");
     else printf("%d\n", t);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值