ZOJ1649/HDU1242简单的BFS加上一点小的变形

此题的大致意思是在一个迷宫内,营救天使,r代表天使的朋友a代表天使,x代表卫兵;

见到卫兵就打死他这要多花1各单位时间,问你要多长时间才能到达天使所处的位置。

一见到此题第一反应就光搜代码很快就写完了,测试样例通过,直接提交我傻眼了,

WA一直WA纠结死了!我不信邪就去搜别人代码,第一眼看到的是优先队列。

我恍然大悟,我用的是普通队列只能一步步往外搜不能停顿,这是普通队列的优点也是缺点。

结果我使用优先队列后只是在我代码的基础上稍作改动即实现了优先队列的功能,

因为优先队列是按顺序从小到大排列时间的,所以用稍作修改果断0ms通过,真是开心啊!

  1 #include<cstdio>
2 #include<cstring>
3 #include<iostream>
4 #include<limits.h>
5 #include<cstdlib>
6 #include<queue>
7
8 using namespace std;
9
10 typedef struct
11 {
12 int x, y;
13 int step;
14 }Point;
15
16 priority_queue<Point> q;
17 bool operator<(Point a, Point b)
18 {
19 return a.step > b.step;
20 }
21
22 char map[201][201];
23 int visit[201][201];
24 int N, M, ok, num, si, sj;
25 int dx[4] = {1,-1,0,0};
26 int dy[4] = {0,0,1,-1};
27
28 int True(Point V)
29 {
30 if(V.x>=0 && V.x<N && V.y>=0 && V.y<M)
31 return 1;
32 return 0;
33 }
34
35 int main()
36 {
37 int i, j, ax, ay;
38 Point Start, end;
39
40 while(scanf("%d%d", &N, &M) != EOF)
41 {
42 getchar();
43 for(i=0; i<N; i++)
44 {
45 scanf("%s",map[i]);
46 getchar();
47 }
48 for(i=0; i<N; i++)
49 for(j=0; j<M; j++)
50 {
51 if(map[i][j] == 'r')
52 {
53 si = i;
54 sj = j;
55 }
56 if(map[i][j] == 'a')
57 {
58 ax = i;
59 ay = j;
60 }
61 }
62 memset(visit, 0, sizeof(visit));
63 Start.x = si;
64 Start.y = sj;
65 Start.step = 0;
66 ok = 0;
67 visit[Start.x][Start.y] = 1;
68 q.push(Start);
69 while( !q.empty() )
70 {
71 Point u = q.top();
72 q.pop();
73 if(u.x==ax&&u.y==ay)
74 {
75 ok = 1;
76 printf("%d\n",u.step);
77 break;
78 }
79 for(i=0; i<4; i++)
80 {
81 Point v;
82 v.x = u.x + dx[i];
83 v.y = u.y + dy[i];
84 if(True(v)&&!visit[v.x][v.y]&&map[v.x][v.y]!='#')
85 {
86 if(map[v.x][v.y]=='x')
87 v.step = u.step + 2;
88 else
89 v.step = u.step + 1;
90 visit[v.x][v.y] = 1;
91 q.push(v);
92 }
93 }
94 }
95 if(!ok)
96 printf("Poor ANGEL has to stay in the prison all his life.\n");
97 while( !q.empty() )
98 {
99 q.pop();
100 }
101 }
102 return 0;
103 }
posted @ 2012-03-06 20:15  zhongya  阅读(250)  评论(0编辑  收藏  举报