落后萝莉

文章
5
资源
0
加入时间
2年10月17天

ZOJ 1649

这题要用BFS去做,要注意的是’x‘,这里可以有优先队列去做,会很简单;另一个要注意的是,a只有一个,r可能有很多个,所以可以用a去找最接近的r;#include <iostream>#include <queue>#include "string.h"using namespace std;struct step{ int x,y,t;...