Lights Against Dudely

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 171    Accepted Submission(s): 53

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
 
Source
 

二进制压缩枚举所有可以放的情况。

灯光可以超出边界。只有不照到非法区域就可以。

(1<<15) 枚举放的情况,15 枚举哪一个是特殊的,4枚举特殊的那个的方向,里面在15进行处理。

复杂度可以接受的

 /* ***********************************************
Author :kuangbin
Created Time :2013-11-9 13:48:11
File Name :E:\2013ACM\专题强化训练\区域赛\2013杭州\1001.cpp
************************************************ */ #include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std; char g[][];
pair<int,int>p[];
int a[][];
int d[][];
bool f[];
const int INF = 0x3f3f3f3f;
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int n,m;
while(scanf("%d%d",&n,&m) == )
{
if(n == && m == )break;
for(int i = ;i <= n;i++)
scanf("%s",g[i]+);
int cnt = ;
for(int i = ;i <= n;i++)
for(int j = ;j <= m;j++)
if(g[i][j] == '.')
{
p[cnt] = make_pair(i,j);
d[i][j] = cnt++;
}
if(cnt == )
{
printf("0\n");
continue;
}
int ans = INF;
int tot = (<<cnt);
for(int i = ;i < tot;i++)
{
for(int j = ;j < cnt;j++)
if(i & (<<j))
{
for(int k = ; k < ;k++)
{
for(int tt = ;tt < cnt;tt++)
f[tt] = false;
bool flag = true;
for(int t = ;t < cnt;t++)
if(i & (<<t))
if(t != j)
{
int x = p[t].first;
int y = p[t].second;
f[d[x][y]] = true;
if(x- > )
{
if(g[x-][y] == '#')flag = false;
else f[d[x-][y]] = true;
}
if(y+ <= m)
{
if(g[x][y+] == '#')flag = false;
else f[d[x][y+]] = true;
}
if(!flag)break;
}
if(!flag)continue;
int x = p[j].first;
int y = p[j].second;
f[d[x][y]] = true;
if(k == )
{
if(x- > )
{
if(g[x-][y] == '#')flag = false;
else f[d[x-][y]] = true;
}
if(y+ <= m)
{
if(g[x][y+] == '#')flag = false;
else f[d[x][y+]] = true;
}
}
else if(k == )
{
if(x+ <= n)
{
if(g[x+][y] == '#')flag = false;
else f[d[x+][y]] = true;
}
if(y+ <= m)
{
if(g[x][y+] == '#')flag = false;
else f[d[x][y+]] = true;
}
}
else if(k == )
{
if(x+ <= n)
{
if(g[x+][y] == '#')flag = false;
else f[d[x+][y]] = true;
}
if(y- > )
{
if(g[x][y-] == '#')flag = false;
else f[d[x][y-]] = true;
}
}
else
{
if(x- > )
{
if(g[x-][y] == '#')flag = false;
else f[d[x-][y]] = true;
}
if(y- > )
{
if(g[x][y-] == '#')flag = false;
else f[d[x][y-]] = true;
}
}
if(!flag)continue;
for(int t = ;t < cnt;t++)
if(f[t] == false)
flag = false;
if(!flag)continue;
int num = ;
for(int t = ;t < cnt;t++)
if(i & (<<t))
num++;
ans = min(ans,num);
}
}
}
if(ans == INF)ans = -;
cout<<ans<<endl; }
return ;
}

最新文章

  1. python3 linux下安装
  2. Kali Linux 2016.2发布提供虚拟机以及系统镜像下载
  3. JMS【一】--JMS基本概念
  4. WPF-控件-层级控件-TreeView
  5. JS模块化规范CommonJS,AMD,CMD
  6. cademy的Java习题做后感
  7. Google Maps 学习笔记(三)
  8. BZOJ 3223: Tyvj 1729 文艺平衡树(splay)
  9. Codeforces Round #261 (Div. 2) E. Pashmak and Graph DP
  10. UWP: 体验应用内购新接口——StoreContext类
  11. WeMall微信商城签到插件Sign的主要源码
  12. poj2785双向搜索
  13. linux系统编程:IO读写过程的原子性操作实验
  14. es6 let 和 const
  15. 数据分析之Matplotlib
  16. 数组方法splice
  17. Ubuntu 安装hive + mysql
  18. 绝对良心的 Java 中发邮件功能
  19. Code Signal_练习题_Are Similar?
  20. 值得学习的C开源项目

热门文章

  1. 20155218 2006-2007-2 《Java程序设计》第5周学习总结
  2. 第5月第10天 node.js的request模块
  3. Linux笔记之如何分割文件或管道流:split
  4. 主流服务器apache,iis,tomcat,jboss,resion,weblogic,websphere的区别
  5. Implement Queue by Two Stacks &amp; Implement Stack using Queues
  6. 浅谈tomcat中间件的优化【转】
  7. LR开发接口脚本
  8. C# 每月第一天和最后一天
  9. 不使用第三方软件、使用IE11自带功能来屏蔽浏览器广告
  10. Oracle学习笔记:使用replace、regexp_replace实现字符替换、姓名脱敏