POJ - 3278 - Catch That Cow (BFS)

题目传送:Catch That Cow

思路:BFS找最小步数,用一个结构体存下当前结点的数值以及当前步数

AC代码:

#include <cstdio>
#include <cstring>
#include <string>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <deque>
#include <cctype>
#define LL long long
#define INF 0x7fffffff
using namespace std;

int n, k;

bool vis[200005];

struct node {
	int num;
	int cnt;
	node(int n, int c) : num(n), cnt(c) {};
};

int bfs(int n, int k) {
	if(n == k) return 0;
	memset(vis, false, sizeof(vis));
	queue<node> que;
	que.push(node(n, 0));
	vis[n] = true;
	while(!que.empty()) {
		node t = que.front();
		que.pop();
		node n1 = node(t.num - 1, t.cnt + 1);
		node n2 = node(t.num + 1, t.cnt + 1);
		node n3 = node(t.num * 2, t.cnt + 1);
		if(n1.num == k) return n1.cnt;
		if(n2.num == k) return n2.cnt;
		if(n3.num == k) return n3.cnt;
		if(n1.num >= 0 && n1.num <= 150005 && !vis[n1.num]) {
			//重要剪枝,num小于0的时候肯定不是正解,还有num大于150000时肯定也不是正解
			que.push(n1);
			vis[n1.num] = true;//入队列的时候就要赋值为已经访问过,不然会超时!
		}
		if(n2.num >= 0 && n2.num <= 150005 && !vis[n2.num]) {
			que.push(n2);
			vis[n2.num] = true;
		}
		if(n3.num >= 0 && n3.num <= 150005 && !vis[n3.num]) {
			que.push(n3);
			vis[n3.num] = true;
		}
	}
}

int main() {
	while(scanf("%d %d", &n, &k) != EOF) {
		printf("%d\n", bfs(n, k));
	}
	return 0;
}
时间: 2024-10-07 18:08:03

POJ - 3278 - Catch That Cow (BFS)的相关文章

POJ 3278 Catch That Cow(bfs)

传送门 Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 80273   Accepted: 25290 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 10

POJ 3278 Catch That Cow(BFS 剪枝)

题目链接:http://poj.org/problem?id=3278 这几次都是每天的第一道题都挺顺利,然后第二道题一卡一天. = =,今天的这道题7点40就出来了,不知道第二道题在下午7点能不能出来.0 0 先说说这道题目,大意是有个农夫要抓牛,已知牛的坐标,和农夫位置.而且农夫有三种移动方式,X + 1,X - 1,X * 2,问最少几步抓到牛. 开始认为很简单的,三方向的BFS就能顺利解决,然后在忘开标记的情况下直接广搜,果然TLE,在你计算出最少位置之前,牛早跑了. 然后反应过来开标记

POJ 题目Catch That Cow(BFS)

Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 52537   Accepted: 16471 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,00

poj 3278 Catch That Cow(广搜)

Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 45087   Accepted: 14116 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,00

poj 3278:Catch That Cow(简单一维广搜)

Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 45648   Accepted: 14310 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,00

POJ 3278 Catch That Cow --- 简单BFS

/* POJ 3278 Catch That Cow --- 简单BFS */ #include <cstdio> #include <queue> #include <cstring> using namespace std; const int maxn = 100005; bool visit[maxn]; int step[maxn]; int bfs(int n, int k){ if (n == k) return 0; memset(visit, 0, s

HDU 2717 Catch That Cow (bfs)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2717 Catch That Cow Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 12615    Accepted Submission(s): 3902 Problem Description Farmer John has been

poj 3278 Catch That Cow 【bfs】

Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 52335   Accepted: 16416 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,00

Catch That Cow(BFS)

Catch That Cow Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10166    Accepted Submission(s): 3179 Problem Description Farmer John has been informed of the location of a fugitive cow and wants