zoj 1649(hdu 1242)Rescue(广搜)
继续练习搜索,bfs,优先队列的应用优先队列,知道咋用,但还是了解的太少,还要继续理解单词记不住……priority 优先新发现:front()原本是栈的取顶函数,但在一般queue中也可以用,但在优先队列中就不行,必须用top()取顶……#include#include#include#includeusing namespace std;int dir[4][2]={0,1,0,-1,1,0,-1,0};int si,sj,n,m;char map[201][201];s