Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 2653    Accepted Submission(s): 795


Problem Description
Harry: "But Hagrid. How am I going to pay for all of this? I haven't any money." 

Hagrid: "Well there's your money, Harry! Gringotts, the wizard bank! Ain't no safer place. Not one. Except perhaps Hogwarts." 

— Rubeus Hagrid to Harry Potter. 

  Gringotts Wizarding Bank is the only bank of the wizarding world, and is owned and operated by goblins. It was created by a goblin called Gringott. Its main offices are located in the North Side of Diagon Alley in London, England. In addition to storing money
and valuables for wizards and witches, one can go there to exchange Muggle money for wizarding money. The currency exchanged by Muggles is later returned to circulation in the Muggle world by goblins. According to Rubeus Hagrid, other than Hogwarts School
of Witchcraft and Wizardry, Gringotts is the safest place in the wizarding world.

  The text above is quoted from Harry Potter Wiki. But now Gringotts Wizarding Bank is not safe anymore. The stupid Dudley, Harry Potter's cousin, just robbed the bank. Of course, uncle Vernon, the drill seller, is behind the curtain because he has the most
advanced drills in the world. Dudley drove an invisible and soundless drilling machine into the bank, and stole all Harry Potter's wizarding money and Muggle money. Dumbledore couldn't stand with it. He ordered to put some magic lights in the bank rooms to
detect Dudley's drilling machine. The bank can be considered as a N × M grid consisting of N × M rooms. Each room has a coordinate. The coordinates of the upper-left room is (1,1) , the down-right room is (N,M) and the room below the upper-left room is (2,1).....
A 3×4 bank grid is shown below:



  Some rooms are indestructible and some rooms are vulnerable. Dudely's machine can only pass the vulnerable rooms. So lights must be put to light up all vulnerable rooms. There are at most fifteen vulnerable rooms in the bank. You can at most put one light
in one room. The light of the lights can penetrate the walls. If you put a light in room (x,y), it lights up three rooms: room (x,y), room (x-1,y) and room (x,y+1). Dumbledore has only one special light whose lighting direction can be turned by 0 degree,90
degrees, 180 degrees or 270 degrees. For example, if the special light is put in room (x,y) and its lighting direction is turned by 90 degrees, it will light up room (x,y), room (x,y+1 ) and room (x+1,y). Now please help Dumbledore to figure out at least how
many lights he has to use to light up all vulnerable rooms.

  Please pay attention that you can't light up any indestructible rooms, because the goblins there hate light. 

 

Input
  There are several test cases.

  In each test case:

  The first line are two integers N and M, meaning that the bank is a N × M grid(0<N,M <= 200).

  Then a N×M matrix follows. Each element is a letter standing for a room. '#' means a indestructible room, and '.' means a vulnerable room. 

  The input ends with N = 0 and M = 0
 

Output
  For each test case, print the minimum number of lights which Dumbledore needs to put.

  If there are no vulnerable rooms, print 0.

  If Dumbledore has no way to light up all vulnerable rooms, print -1.
 

Sample Input

2 2
##
##
2 3
#..
..#
3 3
###
#.#
###
0 0
 

Sample Output

0
2
-1
 
这题可以用状压的思想做,因为题目中说要照明的点的个数不超过15个,所以可以枚举所有情况,复杂度为4*15*(2^15)*10,是可以接受的。先枚举特殊的灯以及其放的位置,然后枚举其余灯放其他点的状态,看是否符合。

#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<string>
#include<algorithm>
using namespace std;
typedef long long ll;
#define inf 0x7fffffff
#define maxn 205
char gra[maxn][maxn],lit[maxn][maxn],vis[maxn][maxn];
int a[30][5],c[30];
int tot; int check()
{
int i,j,x,y;
int flag=1;
for(i=1;i<=tot;i++){
x=a[i][0];
y=a[i][1];
if(lit[x][y])continue;
else flag=0;
}
return flag;
} int main()
{
int n,m,i,j,h,k;
int x1,x2,x3,y1,y2,y3,x,y,now,xx1,xx2,yy1,yy2,xx,yy,s,zt;
while(scanf("%d%d",&n,&m)!=EOF)
{
if(n==0 && m==0)break;
tot=0;
for(i=1;i<=n;i++){
scanf("%s",gra[i]+1);
for(j=1;j<=m;j++){
if(gra[i][j]=='.'){
tot++;
a[tot][0]=i;
a[tot][1]=j;
a[tot][2]=(1<<(tot-1) );
}
} }
if(tot==0){
printf("0\n");continue;
}
int ans=inf;
for(h=1;h<=4;h++){
for(k=1;k<=tot;k++){
for(i=1;i<=tot;i++){
vis[a[i][0] ][a[i][1] ]=0;
lit[a[i][0] ][a[i][1] ]=0;
}
x=a[k][0];
y=a[k][1];
if(h==1){
x1=x-1; y1=y;
x2=x; y2=y+1;
}
else if(h==2){
x1=x+1; y1=y;
x2=x; y2=y+1;
}
else if(h==3){
x1=x+1; y1=y;
x2=x; y2=y-1; }
else if(h==4){
x1=x-1; y1=y;
x2=x; y2=y-1 ;
} if(x1>=1 && x1<=n && y1>=1 && y1<=m){
if(gra[x1][y1]=='#')continue;
}
if(x2>=1 && x2<=n && y2>=1 && y2<=m){
if(gra[x2][y2]=='#')continue;
}
vis[x][y]=1;lit[x][y]=1;
if(x1>=1 && x1<=n && y1>=1 && y1<=m){
lit[x1][y1]=1;
}
if(x2>=1 && x2<=n && y2>=1 && y2<=m){
lit[x2][y2]=1;
} if(check()){
ans=min(ans,1);break;
} for(zt=1;zt<=(1<<tot)-1;zt++){
int s=zt;
for(i=1;i<=tot;i++){
vis[a[i][0] ][a[i][1] ]=0;
lit[a[i][0] ][a[i][1] ]=0; }
if(x1>=1 && x1<=n && y1>=1 && y1<=m){
if(gra[x1][y1]=='#')continue;
}
if(x2>=1 && x2<=n && y2>=1 && y2<=m){
if(gra[x2][y2]=='#')continue;
}
vis[x][y]=1;lit[x][y]=1;
if(x1>=1 && x1<=n && y1>=1 && y1<=m){
lit[x1][y1]=1;
}
if(x2>=1 && x2<=n && y2>=1 && y2<=m){
lit[x2][y2]=1;
}
if(s&(a[k][2] ))continue;
int wei=0;
int geshu=0;
while(s)
{
wei++;
c[wei]=s%2;
if(c[wei]==1)geshu++;
s/=2;
}
if(geshu+1>ans)continue;
int flag1=1;
for(i=1;i<=wei;i++){
if(c[i]==1){
xx=a[i][0];
yy=a[i][1];
xx1=xx-1;yy1=yy;
xx2=xx;yy2=yy+1;
if(xx1>=1 && xx1<=n && yy1>=1 && yy1<=m){
if(gra[xx1][yy1]=='#'){
flag1=0;break;
}
}
if(xx2>=1 && xx2<=n && yy2>=1 && yy2<=m){
if(gra[xx2][yy2]=='#'){
flag1=0;break;
}
}
vis[xx][yy]=1;lit[xx][yy]=1;
if(xx1>=1 && xx1<=n && yy1>=1 && yy1<=m){
lit[xx1][yy1]=1;
}
if(xx2>=1 && xx2<=n && yy2>=1 && yy2<=m){
lit[xx2][yy2]=1;
}
}
}
if(flag1){
if(check()){
ans=min(ans,geshu+1);
}
}
} }
if(ans==1)break;
}
if(ans==inf)printf("-1\n");
else printf("%d\n",ans);
}
return 0;
}



hdu4770 Lights Against Dudely的更多相关文章

  1. hdu4770:Lights Against Dudely(回溯 + 修剪)

    称号:hdu4770:Lights Against Dudely 题目大意:相同是n*m的矩阵代表room,房间相同也有脆弱和牢固之分,如今要求要保护脆弱的房间.须要将每一个脆弱的房间都照亮,可是牢固 ...

  2. HDOJ 4770 Lights Against Dudely

    状压+暴力搜索 Lights Against Dudely Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K ...

  3. HDU 4770 Lights Against Dudely

    Lights Against Dudely Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  4. HDU 4770 Lights Against Dudely (2013杭州赛区1001题,暴力枚举)

    Lights Against Dudely Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  5. hdu 4770 Lights Against Dudely(回溯)

    pid=4770" target="_blank" style="">题目链接:hdu 4770 Lights Against Dudely 题 ...

  6. HDU 4770 Lights Against Dudely 暴力枚举+dfs

    又一发吐血ac,,,再次明白了用函数(代码重用)和思路清晰的重要性. 11779687 2014-10-02 20:57:53 Accepted 4770 0MS 496K 2976 B G++ cz ...

  7. HDU_4770 Lights Against Dudely 状压+剪枝

    原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=4770 Lights Against Dudely Time Limit: 2000/1000 MS ( ...

  8. hdu 4770 13 杭州 现场 A - Lights Against Dudely 暴力 bfs 状态压缩DP 难度:1

    Description Harry: "But Hagrid. How am I going to pay for all of this? I haven't any money.&quo ...

  9. 状态压缩 + 暴力 HDOJ 4770 Lights Against Dudely

    题目传送门 题意:有n*m的房间,'.'表示可以被点亮,'#'表示不能被点亮,每点亮一个房间会使旁边的房间也点亮,有意盏特别的灯可以选择周围不同方向的房间点亮.问最少需要多少灯使得所有房间点亮 分析: ...

随机推荐

  1. 70.LeetCode爬楼梯

    爬楼梯 点击标题可跳转到官网进行查看 假设你正在爬楼梯.需要 n 阶你才能到达楼顶. 每次你可以爬 1 或 2 个台阶.你有多少种不同的方法可以爬到楼顶呢? 注意:给定 n 是一个正整数. 示例 1: ...

  2. Nginx基础知识学习(安装/进程模型/事件处理机制/详细配置/定时切割日志)

    一.Linux下Nginx的安装 1.去官网 http://nginx.org/download/下载对应的Nginx安装包,推荐使用稳定版本. 2.上传Nginx到Linux服务器. 3.安装依赖环 ...

  3. .NET 5 程序高级调试-WinDbg

    上周和大家分享了.NET 5开源工作流框架elsa,程序跑起来后,想看一下后台线程的执行情况.抓了个进程Dump后,使用WinDbg调试,加载SOS调试器扩展,结果无法正常使用了: 0:000> ...

  4. 【Linux】用yum来下载rpm,而不安装

    方法一:yum yum命令本身就可以用来下载一个RPM包,标准的yum命令提供了--downloadonly(只下载)的选项来达到这个目的. $ sudo yum install --download ...

  5. .NET 云原生架构师训练营(模块二 基础巩固 Scrum 团队)--学习笔记

    2.7.3 Scrum 团队 理想的环境 团队章程 如何组建 Scrum 团队 产品待办事项列表 用户故事 敏捷开发流程 理想的环境 5-9人 100% 跨职能 在一起 自组织 自组织 目标 授权 沟 ...

  6. Netty学习:EventLoop事件机制

    目录 EventLoop是什么 EventLoop适用的场景 Netty中的EventLoop Netty中的大量inEventLoop判断 Netty是如何建立连接并监听端口的-NIOSocketC ...

  7. Redis-第五章节-8种数据类型

    目录 一.Redis对key的操作 二.五种数据类型 String类型 List(集合) Set(集合) Hash(哈希) Zset(有序集合) 三.三种特殊数据类型 geospatial(地理位置) ...

  8. linux设备注册

    一.分配cdev cdev表示字符设备,使用cdev_alloc函数,cdev_alloc函数原型如下: /** * cdev_alloc() - allocate a cdev structure ...

  9. 转 7 jmeter之参数化

    7 jmeter之参数化   badboy里参数化(前面4 jmeter badboy脚本开发技术详解已讲过) jmeter里参数化-1 用户参数 1.打开badboy工具,点击红色按钮开始录制,在地 ...

  10. centos系统磁盘扩容

    1.查看磁盘空间大小,使用df -h 命令. 2. 增加磁盘空间,例如下图使用VM虚拟机增加的方式.物理机直接安装挂载上去. 3. 使用fdisk /dev/sda, 创建新分区. 4.重启Linux ...