HDU 4771 Stealing Harry Potter's Precious(BFS + DFS)

HDU 4771 Stealing Harry Potter‘s Precious

题目链接

题意:给定人的起始位置和k个宝物,求人拿完全部宝物最小的步数

思路:先bfs打出两两之间路径,然后dfs暴力求答案,因为宝物才4个,所以暴力是没问题的

代码:

#include <stdio.h>
#include <string.h>
#include <queue>
#include <algorithm>
using namespace std;

const int INF = 0x3f3f3f3f;
const int d[4][2] = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
const int N = 105;
int n, m, k, g[10][10], vis[10];
char str[N][N];

struct Point {
    int x, y, num;
    Point(int x = 0, int y = 0) {
	this->x = x;
	this->y = y;
    }
} s, p[10];

int bfs(Point a, Point b) {
    queue<Point> Q;
    a.num = 0;
    Q.push(a);
    int vis[N][N];
    memset(vis, 0, sizeof(vis));
    vis[a.x][a.y] = 1;
    while (!Q.empty()) {
	Point now = Q.front();
	if (now.x == b.x && now.y == b.y) return now.num;
	Q.pop();
	for (int i = 0; i < 4; i++) {
	    int xx = now.x + d[i][0];
	    int yy = now.y + d[i][1];
	    if (xx <= 0 || xx > n || yy <= 0 || yy > m || str[xx][yy] == '#'|| vis[xx][yy]) continue;
	    Point next = Point(xx, yy);
	    next.num = now.num + 1;
	    vis[next.x][next.y] = 1;
	    Q.push(next);
	}
    }
    return -1;
}

bool build() {
    memset(g, -1, sizeof(g));
    for (int i = 0; i < k; i++) {
	g[0][i + 1] = bfs(s, p[i]);
	for (int j = i + 1; j < k; j++)
	    g[i + 1][j + 1] = g[j + 1][i + 1] = bfs(p[i], p[j]);
    }
    return true;
}

int dfs(int now, int num) {
    if (num == k) return 0;
    int ans = INF;
    for (int i = 1; i <= k; i++) {
	if (g[now][i] == -1 || vis[i]) continue;
	vis[i] = 1;
	ans = min(ans, dfs(i, num + 1) + g[now][i]);
	vis[i] = 0;
    }
    return ans;
}

int main() {
    while (~scanf("%d%d", &n, &m) && n || m) {
	memset(vis, 0, sizeof(vis));
	for (int i = 1; i <= n; i++) {
	    scanf("%s", str[i] + 1);
	    for (int j = 1; j <= m; j++) {
		if (str[i][j] == '@')
		    s = Point(i, j);
	    }
	}
	scanf("%d", &k);
	for (int i = 0; i < k; i++)
	    scanf("%d%d", &p[i].x, &p[i].y);
	if (!build()) printf("-1\n");
	else printf("%d\n", dfs(0, 0));
    }
    return 0;
}

HDU 4771 Stealing Harry Potter's Precious(BFS + DFS)

时间: 2024-08-07 06:09:27

HDU 4771 Stealing Harry Potter's Precious(BFS + DFS)的相关文章

hdu 4771 Stealing Harry Potter&#39;s Precious (2013亚洲区杭州现场赛)(搜索 bfs + dfs) 带权值的路径

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4771 题目意思:'@'  表示的是起点,'#' 表示的是障碍物不能通过,'.'  表示的是路能通过的: 目的:让你从 '@' 点出发,然后每个点只能走一次,求出最小的距离: 解题思路:先用 bfs 求解出任意两点之间的距离,用 ans[i][j],表示点 i 到点  j 的距离: 然后用 dfs 递归求出从起点经过所有点的距离中,比较出最小的: AC代码: 1 #include<iostream>

HDU 4771 Stealing Harry Potter&#39;s Precious (深搜+广搜)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4771 题面: 欢迎参加--BestCoder周年纪念赛(高质量题目+多重奖励) Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2207    Accepted Submis

【HDU 4771 Stealing Harry Potter&#39;s Precious】BFS+状压

2013杭州区域赛现场赛二水... 类似“胜利大逃亡”的搜索问题,有若干个宝藏分布在不同位置,问从起点遍历过所有k个宝藏的最短时间. 思路就是,从起点出发,搜索到最近的一个宝藏,然后以这个位置为起点,搜索下一个最近的宝藏,直至找到全部k个宝藏.有点贪心的感觉. 由于求最短时间,BFS更快捷,但耗内存,这道题就卡在这里了... 这里记录了我几次剪枝的历史...题目要求内存上限32768KB,就差最后600KB了...但我从理论上觉得已经不能再剪了,留下的结点都是盲目式搜索必然要访问的结点. 在此贴

hdu 4771 Stealing Harry Potter&#39;s Precious (BFS+状压)

题意: n*m的迷宫,有一些格能走(“.”),有一些格不能走(“#”).起始点为“@”. 有K个物体.(K<=4),每个物体都是放在“.”上. 问最少花多少步可以取完所有物体. 思路: BFS+状压,看代码. 代码: struct node{ int x,s; node(int _x,int _s){ x=_x, s=_s; } }; int n,m,k,sx,sy; char graph[105][105]; int px[5],py[5]; int dp[105][105][35]; int

HDU 4771 Stealing Harry Potter&#39;s Precious (生成排列+枚举 + BFS)

Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1982    Accepted Submission(s): 931 Problem Description Harry Potter has some precious. For example, his invisib

HDU 4771 Stealing Harry Potter&#39;s Precious

http://acm.hdu.edu.cn/showproblem.php?pid=4771 题意: 给定一副NxM的地图, '#'不可走, '.'可走, '@'为起点 再给出K个(0<K<=4)宝藏点 问从起点开始,走过所有宝藏点的最小步数 若有宝藏点不能到达则输出-1 解法: bfs(最小步数) + dfs(顺序) bfs预处理,先从起点开始,若有点无法到达直接输出-1 再枚举宝藏点作为起点求出每两点间的最小步数,存入数组中(step[i][j]表示从i点到j点的最小步数) 最后dfs枚举

HDU 4771 Stealing Harry Potter&#39;s Precious dfs+bfs

Stealing Harry Potter's Precious Problem Description Harry Potter has some precious. For example, his invisible robe, his wand and his owl. When Hogwarts school is in holiday, Harry Potter has to go back to uncle Vernon's home. But he can't bring his

Hdu 4771 Stealing Harry Potter&#39;s Precious (搜索)

题目大意: 地图上有最多4件物品,小偷要全部拿走,问最少的路程. 思路分析: 考虑到物品数量只有4. 可以先用最多5次bfs求出每个目标点到其他目标点的距离. 然后枚举依次拿取物品的顺序,用next_permutation... #include <cstdio> #include <iostream> #include <cstring> #include <algorithm> #include <queue> using namespace

hdu 4771 Stealing Harry Potter&#39;s Precious (状态压缩+bfs)

Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1297    Accepted Submission(s): 619 Problem Description Harry Potter has some precious. For example, his invisib