• Olya and Energy Drinks(bfs)


    D. Olya and Energy Drinks
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Olya loves energy drinks. She loves them so much that her room is full of empty cans from energy drinks.

    Formally, her room can be represented as a field of n × m cells, each cell of which is empty or littered with cans.

    Olya drank a lot of energy drink, so now she can run k meters per second. Each second she chooses one of the four directions (up, down, left or right) and runs from 1 to k meters in this direction. Of course, she can only run through empty cells.

    Now Olya needs to get from cell (x1, y1) to cell (x2, y2). How many seconds will it take her if she moves optimally?

    It's guaranteed that cells (x1, y1) and (x2, y2) are empty. These cells can coincide.

    Input

    The first line contains three integers nm and k (1 ≤ n, m, k ≤ 1000) — the sizes of the room and Olya's speed.

    Then n lines follow containing m characters each, the i-th of them contains on j-th position "#", if the cell (i, j) is littered with cans, and "." otherwise.

    The last line contains four integers x1, y1, x2, y2 (1 ≤ x1, x2 ≤ n1 ≤ y1, y2 ≤ m) — the coordinates of the first and the last cells.

    Output

    Print a single integer — the minimum time it will take Olya to get from (x1, y1) to (x2, y2).

    If it's impossible to get from (x1, y1) to (x2, y2), print -1.

    Examples
    input
    3 4 4
    ....
    ###.
    ....
    1 1 3 1
    output
    3
    input
    3 4 1
    ....
    ###.
    ....
    1 1 3 1
    output
    8
    input
    2 2 1
    .#
    #.
    1 1 2 2
    output
    -1
    Note

    In the first sample Olya should run 3 meters to the right in the first second, 2 meters down in the second second and 3 meters to the left in the third second.

    In second sample Olya should run to the right for 3 seconds, then down for 2 seconds and then to the left for 3 seconds.

    Olya does not recommend drinking energy drinks and generally believes that this is bad.

    //题意:给出一个 n*m 的图,每一秒可以走 1 -- k 步,给出起点,终点,问最少需要几秒?

    //用bfs是肯定的,bfs能到达的所有的地方,但是,如何不重复搜是个问题,用 vis 数组标记该点从向哪个方向搜过了,不重复搜即可。用位运算标记比较好,这样最多搜 n*m*4 次吧

     1 # include <bits/stdc++.h>
     2 using namespace std;
     3 # define eps 1e-8
     4 # define INF 1e20
     5 # define pi  acos(-1.0)
     6 # define MX  1005
     7 const int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}};
     8 struct Node
     9 {
    10     int x, y;
    11     int t;
    12 };
    13 
    14 int n, m, k;
    15 char G[MX][MX];
    16 int sx, sy, ex, ey;
    17 int ans[MX][MX];
    18 int vis[MX][MX];
    19 
    20 int check(Node &x)
    21 {
    22     if (x.x<1||x.x>n||x.y<1||x.y>m) return 0;
    23     if (G[x.x][x.y]=='#') return 0;
    24     return 1;
    25 }
    26 
    27 void bfs()
    28 {
    29     memset(vis,0,sizeof(vis));
    30     memset(ans,-1,sizeof(ans));
    31     queue<Node> q;
    32     q.push((Node){sx,sy,0});
    33     vis[sx][sy]=(1<<4)-1;
    34     ans[sx][sy]=0;
    35     while (!q.empty())
    36     {
    37         Node nex, now = q.front();
    38         q.pop();
    39         nex.t = now.t+1;
    40         for (int i=0;i<4;i++)
    41         {
    42             for (int j=1;j<=k;j++)
    43             {
    44                 nex.x = now.x+dir[i][0]*j;
    45                 nex.y = now.y+dir[i][1]*j;
    46                 if (!check(nex)) break;
    47                 if (vis[nex.x][nex.y] & (1<<i)) break;
    48                 if (!vis[nex.x][nex.y])
    49                 {
    50                     q.push(nex);
    51                     ans[nex.x][nex.y]=nex.t;
    52                 }
    53                 vis[nex.x][nex.y]|=(1<<i);
    54             }
    55         }
    56     }
    57 }
    58 
    59 int main()
    60 {
    61     scanf("%d%d%d",&n,&m,&k);
    62     for (int i=1;i<=n;i++)
    63         scanf("%s",G[i]+1);
    64     scanf("%d%d%d%d",&sx,&sy,&ex,&ey);
    65     bfs();
    66     printf("%d
    ",ans[ex][ey]);
    67     return 0;
    68 }
    View Code
  • 相关阅读:
    eclipse的maven,添加依赖后无法自动下载相应的jar包
    eclipse一直不停building workplace
    数据结构-线性表(顺序存储)插入和删除节点的平均移动次数计算
    Git常用命令
    迷你商城后台管理系统————stage3项目部署测试汇总
    迷你商城后台管理系统————stage2核心代码实现
    迷你商城后台管理系统————stage1需求分析
    如何做需求分析?
    Linux中(Ubuntu18.04.x/CentOS)mysql8.0.x安装/配置/部署/启动
    在LINUX(Ubuntu 18.04.x、CentOS)下配置MySQL8.0.x
  • 原文地址:https://www.cnblogs.com/haoabcd2010/p/7750873.html
Copyright © 2020-2023  润新知