YTU 3166: 共享单车

 

Description

共享单车走进烟台,小明决定尝试。小明启动共享单车app,轻松地找到附近的单车。那么问题来了,到最近的那辆单车,小明大约要走多少米呢?

现在简化问题。将地图设定成一个由100米*100米的像素块组成的二维平面区域。如果一个方块内有单车,则像素块显示为字符“x”;如果此方块内是可以通行的路,则显示为“.”;再如果方块是建筑物,则显示为“*”,建筑物不能通行。

小明在地图上的位置显示为“o”,可以朝,“上”、“下”、“左”,“右”,“左上”,“左下”,“右上”,“右下”八个方向走。下图所示为一个小明站在像素方块O,如果小明向右走到X,则走100米;如果向右上走,则走141米(不需要开方)。

假设小明和单车都在方块的中央。现在给出 T 幅根据以上规则建立的地图,地图行数和列数分别为 n 和 m,请分别估算小明要走多少米才能到最近的单车?


如果计算中出现小数,那么直接舍弃。最后的输出的结果为整型。
给出的地图中至少有一辆单车,如果最终无法到达单车的位置,输出-1。

Input

第1行,T,表示下面有 T 组测试数据
对于每组测试数据
(1)第1行,n和m ,表示地图的大小;
(2)第2行开始,给出具体的地图 。

 

Output

T行数据
每行1个整数,表示问题的解

Sample Input

2
3 8
.....x..
.o...x..
........
8 10
.***......
.***......
.***..x...
..........
.....*****
..o..*****
.......x..
...*******

Sample Output

400
523

 

 

 

 

 

 

 

AC代码如下:

 


 
#include
using namespace std;
typedef long long ll;
const int maxn = (int)1e2+2;
int mov[8][2]={{0,1},{0,-1},{1,0},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1}};
typedef pair< int , pair > piii;
typedef struct 
{
    ll len;
    int x;
    int y;
    // bool operator <(const node & a) const
    // {
    //     return len>a.len;
    // }
}node;
bool vis[maxn][maxn];
int n,m; 
inline bool able(int x, int y) {return !vis[x][y] && x>=0 && x=0 && y,int> mp)
{
    priority_queue  q;  //无法用未定义<的struct node,但可以用pair 默认优先级从前到后  默认greater
    q.push(make_pair(0 , make_pair(ox,oy)));  
    while(!q.empty())
    {
        int cx = q.top().second.first;
        int cy = q.top().second.second;
        ll clen = -q.top().first; 
        q.pop();
        if(vis[cx][cy]) continue;
        vis[cx][cy] = 1;
        if( mp[make_pair(cx,cy)] ) return clen;   
        for(int i=0;i<8;i++)
        {
            int add = 100;
            if(i>3) add = 141;
            int nx = cx + mov[i][0];
            int ny = cy + mov[i][1];
            int nlen = -(clen + add);   
            if(able(nx,ny)) q.push(make_pair(nlen , make_pair(nx,ny)));  
        }
    }
    return 0; 
}
void solve()
{
    map ,int> mp;
    cin>>n>>m;
    char Pixel;
    int ox,oy;
    for(int i=0;i>Pixel;
                vis[i][j] = Pixel=='*'? 1: 0;  
                if(Pixel =='o') ox = i, oy = j;
                if(Pixel=='x') mp[make_pair(i,j)] = 1;
            }
    int ans = BFS(ox,oy,mp); 
    cout<<(!ans?-1:ans)<>T;
    while(T--)  solve();
}

 

 


 

 

 

 

你可能感兴趣的:(YTU,BFS)