Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2783110
  • 博文数量: 471
  • 博客积分: 7081
  • 博客等级: 少将
  • 技术积分: 5369
  • 用 户 组: 普通用户
  • 注册时间: 2012-01-04 21:55
文章分类

全部博文(471)

文章存档

2014年(90)

2013年(69)

2012年(312)

分类: C/C++

2012-08-08 10:10:13


Problem Description
Prairie dog comes again! Someday one little prairie dog Tim wants to visit one of his friends on the farmland, but he is as lazy as his friend (who required Tim to come to his place instead of going to Tim's), So he turn to you for help to point out how could him dig as less as he could.

We know the farmland is divided into a grid, and some of the lattices form houses, where many little dogs live in. If the lattices connect to each other in any case, they belong to the same house. Then the little Tim start from his home located at (x0, y0) aim at his friend's home ( x1, y1 ). During the journey, he must walk through a lot of lattices, when in a house he can just walk through without digging, but he must dig some distance to reach another house. The farmland will be as big as 1000 * 1000, and the up left corner is labeled as ( 1, 1 ).
 

Input
The input is divided into blocks. The first line in each block contains two integers: the length m of the farmland, the width n of the farmland (m, n ≤ 1000). The next lines contain m rows and each row have n letters, with 'X' stands for the lattices of house, and '.' stands for the empty land. The following two lines is the start and end places' coordinates, we guarantee that they are located at 'X'. There will be a blank line between every test case. The block where both two numbers in the first line are equal to zero denotes the end of the input.
 

Output
For each case you should just output a line which contains only one integer, which is the number of minimal lattices Tim must dig.
 

Sample Input
6 6
..X...
XXX.X.
....X.
X.....
X.....
X.X...
3 5
6 3
 0 0
 

Sample Output
3
Hint
Hint: Three lattices Tim should dig: ( 2, 4 ), ( 3, 1 ), ( 6, 2 ).
 

题目大意:
    有一只小狗要去找另一只小狗,两只小狗的坐标都知道,然后这个地图里只有两种元素,即房子(X)还有草地(.),如果小狗经过房子,则不用花时间,如果经过的是草地,时间+1,最后算出小狗到达目标的时候所花费的最小时间。
因为每个节点具有的权值不一样,普通的队列只是按简单的步数,所以要用优先队列
注意m是row,n是col 


点击(此处)折叠或打开

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstring>
  4. #include<string>
  5. #include<algorithm>
  6. #include<queue>
  7. using namespace std;

  8. const int maxn = 1002;
  9. char map[maxn][maxn];
  10. int mark[maxn][maxn];
  11. struct Node {
  12.     char lattic;
  13.     int x,y;
  14.     int tme;
  15.     friend bool operator < (const Node &a, const Node &b) {
  16.         return a.tme > b.tme;
  17.     }//时间从小到大
  18. };

  19. int n, m,startX,startY,endX,endY;
  20. int dir[4][2] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
  21. bool Overmap(int x, int y) {
  22.     if (x < 1 || x > m || y < 1 || y > n) {
  23.         return true;
  24.     }
  25.     return false;
  26. }

  27. inline int BFS() {
  28.     memset(mark, 0, sizeof(mark));
  29.     priority_queue<Node> Q;
  30.     Node first, next;
  31.     first.x = startX, first.y = startY;
  32.     first.tme = 0;
  33.     mark[first.x][first.y] = 1;
  34.     Q.push(first);
  35.     while (!Q.empty())
  36.     {
  37.         first = Q.top();
  38.         Q.pop();
  39.         //找到,退出
  40.         if (first.x == endX && first.y == endY)
  41.         {
  42.             //printf("find it");
  43.             return first.tme;
  44.         }
  45.         //四次循环分别对应四个方向,一条直线则两个方向
  46.         for (int i = 0; i < 4; i++)
  47.         {
  48.             next.x = first.x + dir[i][0];
  49.             next.y = first.y + dir[i][1];
  50.             //出界或者已经访问过 直接跳过下面判断
  51.             if (Overmap(next.x, next.y) || mark[next.x][next.y]==1)
  52.             {
  53.                 continue;
  54.             }
  55.             if (map[next.x][next.y] == 'X')
  56.             {
  57.                 next.tme = first.tme + 0;
  58.             }
  59.             else
  60.             {
  61.                 next.tme = first.tme + 1;
  62.             }
  63.             mark[next.x][next.y] = 1;//标志已经走过的点
  64.             Q.push(next);//入队对它进行扩展
  65.         }
  66.     }
  67.     return -1;
  68. }

  69. int main()
  70.  {
  71.     while (scanf("%d%d", &m, &n)!=EOF && m!=0 && n!=0) //用cin果断超过1000ms,用scanf512ms飘过~
  72.     {
  73.         for (int i = 1; i <=m; i++)
  74.         {
  75.             scanf("%s", map[i]+1);
  76.         }//for(i)
  77.         scanf("%d%d",&startX,&startY);
  78.         scanf("%d%d",&endX,&endY);
  79.         int res = BFS();
  80.         printf("%d\n", res);
  81.        
  82.     }
  83.     return 0;
  84. }


阅读(1651) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~