Catch That Cow poj 4001(抓住那头牛!) BFS(广度优先搜索)
题目链接其实就是求最短路径问题,采用BFS即可。AC代码如下:#include <iostream>#include <queue>using namespace std;const int maxn=2e5+5;bool vis[maxn];struct cow{ int pos; int step; cow(int xx,int ...