hdu 3681 Prison Break (TSP问题)
Prison Break
Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3214 Accepted Submission(s): 829
our clever Micheal#1. Now it’s time to escape, but Micheal#1 needs an optimal plan and he contacts you, one of his human friends, for help.
The jail area is a rectangle contains n×m little grids, each grid might be one of the following:
1) Empty area, represented by a capital letter ‘S’.
2) The starting position of Micheal#1, represented by a capital letter ‘F’.
3) Energy pool, represented by a capital letter ‘G’. When entering an energy pool, Micheal#1 can use it to charge his battery ONLY ONCE. After the charging, Micheal#1’s battery will become FULL and the energy pool will become an empty area. Of course, passing
an energy pool without using it is allowed.
4) Laser sensor, represented by a capital letter ‘D’. Since it is extremely sensitive, Micheal#1 cannot step into a grid with a laser sensor.
5) Power switch, represented by a capital letter ‘Y’. Once Micheal#1 steps into a grid with a Power switch, he will certainly turn it off.
In order to escape from the jail, Micheal#1 need to turn off all the power switches to stop the electric web on the roof—then he can just fly away. Moving to an adjacent grid (directly up, down, left or right) will cost 1 unit of energy and only moving operation
costs energy. Of course, Micheal#1 cannot move when his battery contains no energy.
The larger the battery is, the more energy it can save. But larger battery means more weight and higher probability of being found by the weight sensor. So Micheal#1 needs to make his battery as small as possible, and still large enough to hold all energy he
need. Assuming that the size of the battery equals to maximum units of energy that can be saved in the battery, and Micheal#1 is fully charged at the beginning, Please tell him the minimum size of the battery needed for his Prison break.
that 1<=n,m<=15, and the sum of energy pools and power switches is less than 15.
5 5
GDDSS
SSSFS
SYGYS
SGSYS
SSYSS
0 0
4
思路:首先提取出各个特殊点(开关位置、充电池、起始位置),对它们进行标号。然后,求它们之间的最短距离。
之后。二分枚举可能的初始能量值,进行DP看是否能走到目标状态。
#include<iostream>
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<queue>
#include<algorithm>
#include<iostream>
using namespace std;
#define N 20
const int inf=10000;
int n1,n2,n,m,f;
char g[N][N];
int x[N],y[N];
int dir[4][2]={0,1,0,-1,-1,0,1,0};
int dis[N][N],dist[N][N];
int dp[1<<15][N];
void inti() //读入数据。把特殊点标号
{
n1=0;
int i,j;
for(i=0; i<n; i++)
{
scanf("%s",g[i]);
for(j=0; j<m; j++)
{
if(g[i][j]=='F')
{
f=n1;
x[n1]=i;
y[n1++]=j;
}
else if(g[i][j]=='Y')
{
x[n1]=i;
y[n1++]=j;
}
}
}
n2=n1;
for(i=0; i<n; i++)
for(j=0; j<m; j++)
if(g[i][j]=='G')
{
x[n2]=i;
y[n2++]=j;
}
}
void bfs(int x,int y,int dis[][20]) //求一个特殊点到其它各个点最短路
{
int i,j,u,v;
queue<int>q1,q2;
q1.push(x);
q2.push(y);
for(i=0;i<n;i++)
for(j=0;j<m;j++)
dis[i][j]=inf;
dis[x][y]=0;
while(!q1.empty())
{
x=q1.front();
y=q2.front();
q1.pop();
q2.pop();
for(i=0;i<4;i++)
{
u=x+dir[i][0];
v=y+dir[i][1];
if(u<0||u>=n||v<0||v>=m||g[u][v]=='D')
continue;
if(dis[u][v]>dis[x][y]+1)
{
dis[u][v]=dis[x][y]+1;
q1.push(u);
q2.push(v);
}
}
}
}
bool findd(int t)
{
int i,j,k,lim=1<<n2,tmp=(1<<n1)-1;
for(i=0;i<lim;i++)
for(j=0;j<n2;j++)
dp[i][j]=-inf;
dp[1<<f][f]=t;
for(i=1<<f;i<lim;i++)
{
for(j=0;j<n2;j++)
{
if(dp[i][j]<0)
continue;
if((i&tmp)==tmp) //不一定要相等。包括目标状态即可
return true;
for(k=0;k<n2;k++)
{
int p=1<<k;
if(i&p)
continue;
dp[i|p][k]=max(dp[i|p][k],dp[i][j]-dis[j][k]);
if(dp[i|p][k]>=0&&k>=n1)
dp[i|p][k]=t;
}
}
}
return false;
}
int main()
{
int i,j;
while(scanf("%d%d",&n,&m),n||m)
{
inti();
for(i=0; i<n2; i++)
{
bfs(x[i],y[i],dist);
for(j=0; j<n2; j++) //记录标号后的点相互之间距离
{
dis[i][j]=dist[x[j]][y[j]];
} //i到j的距离等于i点到各个点的最短路
} int l=0,r=300,flag=0;
while(l<=r) //二分枚举各个可能的能量值
{
int mid=(l+r)/2;
if(findd(mid))
{
flag=1;
r=mid-1;
}
else
l=mid+1;
}
if(!flag)
l=-1;
printf("%d\n",l);
}
return 0;
}
hdu 3681 Prison Break (TSP问题)的更多相关文章
- HDU 3681 Prison Break(BFS+二分+状态压缩DP)
Problem Description Rompire is a robot kingdom and a lot of robots live there peacefully. But one da ...
- hdu 3681 Prison Break(状态压缩+bfs)
Problem Description Rompire . Now it’s time to escape, but Micheal# needs an optimal plan and he con ...
- HDU 3681 Prison Break (二分 + bfs + TSP)
题意:给定上一个 n * m的矩阵,你的出发点是 F,你初始有一个电量,每走一步就会少1,如果遇到G,那么就会加满,每个G只能第一次使用,问你把所有的Y都经过,初始电量最少是多少. 析:首先先预处理每 ...
- HDU 3681 Prison Break(状态压缩dp + BFS)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3681 前些天花时间看到的题目,但写出不来,弱弱的放弃了.没想到现在学弟居然写出这种代码来,大吃一惊附加 ...
- hdu 3681 Prison Break
http://acm.hdu.edu.cn/showproblem.php?pid=3681 题意:一个n*m的矩阵,'F'是起点.机器人从F出发,走到G可以充电,走到Y关掉开关,D不能走进,要求把所 ...
- HDU 3681 Prison Break 越狱(状压DP,变形)
题意: 给一个n*m的矩阵,每个格子中有一个大写字母,一个机器人从‘F’出发,拾取所有的开关‘Y’时便能够越狱,但是每走一格需要花费1点能量,部分格子为充电站‘G’,每个电站只能充1次电.而且部分格子 ...
- HDU 3681 Prison Break(状压DP + BFS)题解
题意:一张图,F是起点,Y是必须要到的点,D不能走,G可以充电.可以往四个方向走,每走一步花费一个电,走到G可以选择充满电或者不充,每个G只能充一次.问你走遍Y的最小初始点亮.number(G) + ...
- hdu3511 Prison Break 圆的扫描线
地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=3511 题目: Prison Break Time Limit: 10000/5000 MS ( ...
- HDU3681 Prison Break
Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission( ...
随机推荐
- Cent OS5.2安装Hyper-V集成光盘
一.Hyper-V安装windows系统没有问题,windows2000以后系统都可以,一切顺利. 驱动程序:IDE.SCSI.网络.视频和鼠标 要想实现更强的功能,宿主机需要安装Hyper-V集成光 ...
- 计算器显示e-005什么意思
计算器显示e-005什么意思 1e-005是科学表达式,即 =1e-5 =0.00001e+005就是乘以10的5次方 就是-1.4989*10^5 这是科学计数法(也叫指数计数法) 这是科学计数 ...
- bjfu1277 简单递归
比较简单的递归问题.对于第k时刻的图形,可以平均分成四块,左上,右上,左下这三块的图形是一模一样的,右下的那一块不包含红毛僵尸,所以把那三块里的加起来就是结果了. /* * Author : ben ...
- C++的类成员和类成员函数指针
类成员函数指针: 用于访问类成员函数,和一般函数指针有区别. 类成员函数处理的是类数据成员,声明类成员函数指针的同时,还要指出具体是哪个类的函数指针才可以.调用时也要通过对象调用. 而对于类的静态成员 ...
- ListView蛮好用
知识点如下: 1. ListView的基本用法 2. ArrayAdapter和SimpleAdapter的用法 3. OnScrollListener 和 OnItemClickListener 4 ...
- python 安装预编译库注意事项-pip
一般安装依赖库用pip install 库名 就可以,某些情况下依赖的库需要安装预编译好的, 可以参考pip 安装时的错误信息 下面这个链接中可以直接下载 http://www.lfd.uci.edu ...
- IOS列表实现动态多列
. //图片列表 NSMutableArray *pictureList; //分组列表 NSMutableArray *indexArr; - (UITableViewCell *)tableVie ...
- KM算法详解+模板
http://www.cnblogs.com/wenruo/p/5264235.html KM算法用来求二分图最大权完美匹配. 本文配合该博文服用更佳:趣写算法系列之--匈牙利算法 现在有N男N女,男 ...
- show index 之Cardinality (mysql)
show index 之Cardinality 官方文档的解释: Cardinality An estimate of the number of unique values in the inde ...
- oracle根据正则表达式查找对应的字段
语法如下: SELECT * FROM 表名WHERE regexp_like(表字段,'正则') 例如: 查找某字段小数点后有两个小数以上的信息 SELECT * FROM A TWHERE reg ...