题解 3048: 抓住那头牛

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

抓住那头牛,深搜

摘要:``` #include using namespace std; int n,k; //深度搜索 int dfs(int t) //n到t的时间 { //不能乘车 i……

抓住那头牛(广搜)

摘要:解题思路:利用广搜注意事项:参考代码://利用广度优先搜索 //利用广度优先搜索  #include <iostream> #include <queue>  using namespace s……

3048: 抓住那头牛

摘要:解题思路: BFS: 三种移动方向 + 1, - 1, 2 * x注意事项:参考代码:#include<iostream> #include<cstring> using namespace st……

3048: 抓住那头牛

摘要:```cpp #include using namespace std; int n,k; int dfs(int t) { if(t>n>>k; int s=0; ……

抓住那头牛! 双向BFS

摘要:# 双向BFS ###### 更小的时间复杂度,更少的栈空间,更多的代码 ###### tip:小题大做 ``````cpp #include #define ULL unsigned lo……

dfs+贪心解法

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,k;int dfs(int t){    if(t<=n)    {       ……