贪玩康乃馨

文章
9
资源
0
加入时间
3年0月21天

pku 3278 Catch That Cow(广搜)

搜过的位置打上标记,没有必要再去一次了。。#include #include using namespace std;struct node{ int n,min;};bool used[200005];queue position;int BFS(int N,int K){ if(N==K) return 0; used[N]=true;