hdu 4568 Hunter 最短路+dp
Hunter
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2014 Accepted Submission(s): 615
The area can be represented as a N*M rectangle. Any points of the rectangle is a number means the cost of research it,-1 means James can't cross it, James can start at any place out of the rectangle, and explore point next by next. He will move in the rectangle and bring out all treasures he can take. Of course, he will end at any border to go out of rectangle(James will research every point at anytime he cross because he can't remember whether the point are researched or not).
Now give you a map of the area, you must calculate the least cost that James bring out all treasures he can take(one point up to only one treasure).Also, if nothing James can get, please output 0.

11
/*
hdu 4568 Hunter 最短路+dp problem:
给你一个n*m的地图,每走一个格子会有一定的花费.求拿到所有宝藏的最小花费 solve:
想了很久感觉没什么思路TAT
后来看别人题解可以把这个问题转换一下.
因为总共只有13个宝藏,所以我们可以处理出每个宝藏之间的最短路(即最小花费).
在弄出每个宝藏到边界的最小距离. 那么就可以看成13个点的图.找出遍历所有点的最小花费
而13个点的状态可以用二进制保存,所以dp就好. hhh-2016-08-26 21:43:38
*/
#pragma comment(linker,"/STACK:124000000,124000000")
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <vector>
#include <math.h>
#include <queue>
#include <map>
#define lson i<<1
#define rson i<<1|1
#define ll long long
#define clr(a,b) memset(a,b,sizeof(a))
#define scanfi(a) scanf("%d",&a)
#define scanfl(a) scanf("%I64d",&a)
#define key_val ch[ch[root][1]][0]
#define inf 0x3f3f3f3f
using namespace std;
const ll mod = 1e9+7;
const int maxn = 220; struct NODE
{
int id,len;
NODE() {}
NODE(int i,int d):id(i),len(d) {}
bool operator <(const NODE &a) const
{
return len > a.len;
}
};
int n,m;
int dx[4]= {-1,1,0,0};
int dy[4]= {0,0,-1,1};
int from[maxn][maxn];
int vis[maxn*maxn],tmap[maxn][maxn],tp[maxn][maxn],out[maxn];
int pos[maxn*maxn],dis[maxn*maxn];
void dij(int st,int fp)
{
memset(vis,0,sizeof(vis));
memset(dis,inf,sizeof(dis));
priority_queue<NODE> q;
q.push(NODE(st,0));
dis[st] = 0;
while(!q.empty())
{
NODE t = q.top();
q.pop();
int cur = t.id;
if(vis[cur]) continue;
vis[cur] = 1;
int x = cur/m,y = cur%m;
if(tp[x][y] != -1)
from[fp][tp[x][y]] = dis[cur];
if(x == n-1 || x == 0 || y == m-1 || y == 0)
{
out[fp]= min(out[fp],dis[cur]);
}
for(int i = 0; i < 4; i++)
{
int tx = x + dx[i];
int ty = y + dy[i];
if(tmap[tx][ty] == -1) continue;
if(tx >= n || tx < 0 || ty >= m || ty < 0)
continue;
if(dis[tx*m + ty] > dis[cur] + tmap[tx][ty])
{
dis[tx*m + ty] = dis[cur] + tmap[tx][ty];
q.push(NODE(tx*m + ty, dis[tx*m + ty] ));
}
}
}
return ;
} int dp[20][1 << 14];
void init()
{
memset(from,0,sizeof(from));
memset(out,inf,sizeof(out));
memset(tp,-1,sizeof(tp));
memset(dp,inf,sizeof(dp));
} int main()
{
// freopen("in.txt","r",stdin);
int T,x,y;
scanf("%d",&T);
while(T--)
{
init();
scanfi(n),scanfi(m);
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
scanfi(tmap[i][j]);
}
int q;
scanfi(q);
for(int i = 0; i < q; i++)
{
scanfi(x),scanfi(y);
tp[x][y] = i;
pos[i] = x*m + y;
}
for(int i = 0; i < q; i++)
{
from[i][i] = 0;
dij(pos[i],i);
}
for(int i = 0; i < q; i++)
{
dp[i][1 << i] = out[i]+tmap[pos[i]/m][pos[i]%m];
}
// for(int i = 0;i < q;i++)
// {
// cout << "i"<<i<<":" <<out[i] <<endl;
// for(int j = i;j < q;j++)
// cout << i <<"----"<<j<<" :" <<from[i][j]<<endl;
// }
// cout <<endl;
for(int i = 0; i < (1 << q); i++)
{
for(int j = 0; j < q; j++)
{
if( ((1 << j) & i) && i != (1 << j))
{
for(int k = 0; k < q; k++)
{
if( (i & (1 << k)) && j != k && i != (1<< k))
dp[j][i] = min(dp[k][i-(1 << j)]+from[k][j],dp[j][i]);
}
}
}
}
int ans = inf;
for(int i = 0; i < q; i++)
{
ans = min(ans,dp[i][(1<<q)-1] + out[i]);
// cout << ans <<endl;
}
printf("%d\n",ans);
}
return 0;
}
hdu 4568 Hunter 最短路+dp的更多相关文章
- HDU 4568 Hunter 最短路+TSP
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4568 Hunter Time Limit: 2000/1000 MS (Java/Others)Me ...
- HDU 4568 Hunter 最短路+状压DP
题意:给一个n*m的格子,格子中有一些数,如果是正整数则为到此格子的花费,如果为-1表示此格子不可到,现在给k个宝藏的地点(k<=13),求一个人从边界外一点进入整个棋盘,然后拿走所有能拿走的宝 ...
- HDU 4568 Hunter(最短路径+DP)(2013 ACM-ICPC长沙赛区全国邀请赛)
Problem Description One day, a hunter named James went to a mysterious area to find the treasures. J ...
- hdu 4568 Hunter(spfa预处理 + 状压dp)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4568 思路:首先spfa预处理出每对宝藏之间的最短距离以及宝藏到边界的最短距离,然后dp[state] ...
- hdu 4568 Hunter bfs建图+TSP状压DP
想AC的人请跳过这一段... 题目应该都能读懂.但是个人觉得这题出的很烂,意思太模糊了. 首先,进出次数只能是一次!!这个居然在题目中没有明确说明,让我在当时看到题目的时候无从下手. 因为我想到了这几 ...
- HDU 1003 Max Sum --- 经典DP
HDU 1003 相关链接 HDU 1231题解 题目大意:给定序列个数n及n个数,求该序列的最大连续子序列的和,要求输出最大连续子序列的和以及子序列的首位位置 解题思路:经典DP,可以定义 ...
- hdu 5094 Maze 状态压缩dp+广搜
作者:jostree 转载请注明出处 http://www.cnblogs.com/jostree/p/4092176.html 题目链接:hdu 5094 Maze 状态压缩dp+广搜 使用广度优先 ...
- hdu 2829 Lawrence(斜率优化DP)
题目链接:hdu 2829 Lawrence 题意: 在一条直线型的铁路上,每个站点有各自的权重num[i],每一段铁路(边)的权重(题目上说是战略价值什么的好像)是能经过这条边的所有站点的乘积之和. ...
- BZOJ_1003_[ZJOI2006]物流运输_最短路+dp
BZOJ_1003_[ZJOI2006]物流运输_最短路+dp 题意:http://www.lydsy.com/JudgeOnline/problem.php?id=1003 分析: 这种一段一段的显 ...
随机推荐
- Beta阶段敏捷冲刺报告-DAY2
Beta阶段敏捷冲刺报告-DAY2 Scrum Meeting 敏捷开发日期 2017.11.3 会议时间 13:00 会议地点 微信群 参会人员 项目组全体成员 会议内容 打包问题修复, 爬虫优化, ...
- Linux安装mongodb总结
由于自己的博客上线部署时需要用到mongodb来存储图片文件,所以先在本地电脑上安装了mongodb做测试,由于之前没接触过mongodb,所以安装过程中遇到了各种小问题,折腾了好久终于安装好并成功启 ...
- 前端面试题之html
1.简述<!DOCTYPE> 的作用,标准模式和兼容模式各有什么区别? <!DOCTYPE> 位于文档的第一行,告知浏览器使用哪种规范. 如果不写DOCTYPE,浏览器会进入混 ...
- Linux入门(2)_给初学者的建议
1 学习Linux的注意事项 严格区分大小写(命令, 文件, 选项) Linux中所有内容以文件形式保存, 包括硬件 硬盘文件是/dev/sd[a-p] 光盘文件是/dev/sr0等 Linux不靠扩 ...
- 剑指offer-删除链表中重复的节点
题目描述 在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针. 例如,链表1->2->3->3->4->4->5 处 ...
- RESTful API 编写指南
基于一些不错的RESTful开发组件,可以快速的开发出不错的RESTful API,但如果不了解开发规范的.健壮的RESTful API的基本面,即便优秀的RESTful开发组件摆在面前,也无法很好的 ...
- 2.sublime设置本地远程代码同步
1.打开编辑器输入框(Ctrl+Shift+P),并执行 2.回车后输入sftp 3.回车个后,右键项目 4.修改配置信息,保存
- angular2 学习笔记 ( unit test 单元测试 )
第一次写单元测试. 以前一直都有听说 TDD 的事情. 今天总算是去尝试了一下. 先说说 TDD 的想法, 是这样的, 开发项目的流程 : 确定需求 -> 写类,接口,方法的名字(不写具体实现代 ...
- CURL学习总结(1)
1.curl是什么? 百度百科定义: curl是利用URL语法在命令行方式下工作的开源文件传输工具.它被广泛应用在Unix.多种Linux发行版中,并且有DOS和Win32.W ...
- api-gateway实践(03)新服务网关 - 网关请求拦截检查
参考链接:http://www.cnblogs.com/jivi/archive/2013/03/10/2952829.html 一.为什么要拦截检查请求? 防止重放攻击.篡改重放,进行使用规格检查 ...