Fire Net

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15653    Accepted Submission(s): 9474

题目链接acm.hdu.edu.cn/showproblem.php?pid=1045

Description:

Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing a street or a piece of wall.

A blockhouse is a small castle that has four openings through which to shoot. The four openings are facing North, East, South, and West, respectively. There will be one machine gun shooting through each opening.

Here we assume that a bullet is so powerful that it can run across any distance and destroy a blockhouse on its way. On the other hand, a wall is so strongly built that can stop the bullets.

The goal is to place as many blockhouses in a city as possible so that no two can destroy each other. A configuration of blockhouses is legal provided that no two blockhouses are on the same horizontal row or vertical column in a map unless there is at least one wall separating them. In this problem we will consider small square cities (at most 4x4) that contain walls through which bullets cannot run through.

The following image shows five pictures of the same board. The first picture is the empty board, the second and third pictures show legal configurations, and the fourth and fifth pictures show illegal configurations. For this board, the maximum number of blockhouses in a legal configuration is 5; the second picture shows one way to do it, but there are several other ways.

Your task is to write a program that, given a description of a map, calculates the maximum number of blockhouses that can be placed in the city in a legal configuration.

Input:

The input file contains one or more map descriptions, followed by a line containing the number 0 that signals the end of the file. Each map description begins with a line containing a positive integer n that is the size of the city; n will be at most 4. The next n lines each describe one row of the map, with a '.' indicating an open space and an uppercase 'X' indicating a wall. There are no spaces in the input file.

Output:

For each test case, output one line containing the maximum number of blockhouses that can be placed in the city in a legal configuration.

Sample Input:

4
.X..
....
XX..
....
2
XX
.X
3
.X.
X.X
.X.
3
...
.XX
.XX
4
....
....
....
....
0

Sample Output:

5
1
5
2
4

题意:

n行n列的棋盘上有一些障碍物,现在要求放置最多的车,如果同一行或同一列有车的话就不能放置,但是中间又障碍物挡住的话就可以放置。

题解:

这题可以有两种解法,二分图匹配和dfs,毕竟数据量比较小。

先说二分图匹配:

这个博客写的二分图匹配挺好的:https://blog.csdn.net/c20180630/article/details/70175814

每一行可以作为x集合,每一列可以作为y集合,这样一个点可以由一个x中的数与y中的数相匹配来确定。

但是这里有障碍物,如果像上面这样想,多行可以连一列或者多列可以连一行。

正确的做法就是,把那多行分成多个一行,多列分成多个一列,遇到障碍物就分。

代码如下:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std; const int N = ;
int n,cnt=,ans=,tot=;
int map1[N][N],map2[N][N],match[N],link[N][N],check[N];
char tmp[N][N] ; inline void init(){
cnt=;tot=;ans=;
memset(map1,,sizeof(map1));memset(map2,,sizeof(map2));
memset(match,-,sizeof(match));memset(link,,sizeof(link));
} inline int dfs(int x){
for(int j=;j<=cnt;j++){
if(!check[j] && link[x][j]){
check[j]=;
if(match[j]==- || dfs(match[j])){
match[j]=x;
return ;
}
}
}
return ;
} int main(){
while(~scanf("%d",&n)){
if(n==) break ;
init();
getchar();
for(int i=;i<=n;i++){
for(int j=;j<=n;j++) scanf("%c",&tmp[i][j]);
getchar();
}
int k;
for(int i=;i<=n;i++){
for(int j=;j<=n;j++){
if(tmp[i][j]=='.'){
tot++;
for(k=j;k<=n;k++){
j=k;
if(tmp[i][k]=='X') break ;
map1[i][k]=tot;
}
}
}
}
for(int j=;j<=n;j++){
for(int i=;i<=n;i++){
if(tmp[i][j]=='.'){
cnt++;
for(k=i;k<=n;k++){
i=k;
if(tmp[k][j]=='X') break;
map2[k][j]=cnt;
}
}
}
}
for(int i=;i<=n;i++){
for(int j=;j<=n;j++){
if(tmp[i][j]=='.') link[map1[i][j]][map2[i][j]]=;
}
}
for(int i=;i<=tot;i++){
memset(check,,sizeof(check));
if(dfs(i)) ans++;
}
printf("%d\n",ans);
}
return ;
}

二分图匹配

DFS的话就比较好想了,每放一个点,就判断一下这个点可不可以放,可以放的话做个标记,不能放就继续搜索。

我一开始想的时行列作为状态,但发现这样不好进行判断,DFS有点混乱。

最后发现一个一个格子进行搜索就行了,边界也比较明确,每次判断只用判断它的前面和上面。

代码如下:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std; const int N = ;
char map[N][N];
int n,ans=; inline void init(){
getchar();ans=;
} inline bool judge(int x,int y){
int flag1 = ,flag2 = ;
for(int i=x-;i>=;i--){
if(map[i][y]=='@'){
flag1=;break ;
}
if(map[i][y]=='X'){break ;}
}
for(int i=y-;i>=;i--){
if(map[x][i]=='X'){break;}
if(map[x][i]=='@'){
flag2=;break ;
}
}
if(flag1 && flag2) return true;
return false ;
} inline void dfs(int k,int cnt){
int x=k/n+,y=k%n;
if(y==) y=n;
if(k%n==) x=k/n;
if(k>n*n){
ans=max(ans,cnt);
return ;
}
if(map[x][y]=='X')dfs(k+,cnt);
if(map[x][y]=='.'){
if(judge(x,y)){
map[x][y]='@';
dfs(k+,cnt+);
map[x][y]='.';
dfs(k+,cnt);
}else{
dfs(k+,cnt);
}
}
} int main(){
while(scanf("%d",&n)!=EOF){
if(n==) break;
init();
for(int i=;i<=n;i++){
for(int j=;j<=n;j++) scanf("%c",&map[i][j]);
getchar();
}
dfs(,);
printf("%d\n",ans);
}
return ;
}

DFS

HDU1045:Fire Net(二分图匹配 / DFS)的更多相关文章

  1. HDU1045 Fire Net —— 二分图最大匹配

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1045 Fire Net Time Limit: 2000/1000 MS (Java/Others)  ...

  2. hdu 1045 Fire Net 二分图匹配 && HDU-1281-棋盘游戏

    题意:任意两个个'车'不能出现在同一行或同一列,当然如果他们中间有墙的话那就没有什么事,问最多能放多少个'车' 代码+注释: 1 //二分图最大匹配问题 2 //难点在建图方面,如果这个图里面一道墙也 ...

  3. 【HDU-1045,Fire Net-纯暴力简单DFS】

    原题链接:点击!   大致题意:白块表示可以放置炮台的位置——每个炮台可以攻击到上下左右的直线上的炮台(也就是说在它的上下左右直线上不可以再放置炮台,避免引起互相攻击),黑块表示隔离墙的位置——不可放 ...

  4. HDU1045 Fire Net(DFS枚举||二分图匹配) 2016-07-24 13:23 99人阅读 评论(0) 收藏

    Fire Net Problem Description Suppose that we have a square city with straight streets. A map of a ci ...

  5. hdu 5727 Necklace dfs+二分图匹配

    Necklace/center> 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5727 Description SJX has 2*N mag ...

  6. HDU 1045 Fire Net 【连通块的压缩 二分图匹配】

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=1045 Fire Net Time Limit: 2000/1000 MS (Java/Others)    ...

  7. A - Fire Net - hdu 1045(二分图匹配)

    题意:一个阵地可以向四周扫射,求出来最多能修多少个阵地,墙不可以被扫射透,阵地不能同行或者或者列(有墙隔着例外) 分析:很久以前就做过这道题..当时是练习深搜来着,不过时间复杂度比较高,现在再看突然发 ...

  8. POJ3057 Evacuation 二分图匹配+最短路

    POJ3057 Evacuation 二分图匹配+最短路 题目描述 Fires can be disastrous, especially when a fire breaks out in a ro ...

  9. UVA 12549 - 二分图匹配

    题意:给定一个Y行X列的网格,网格种有重要位置和障碍物.要求用最少的机器人看守所有重要的位置,每个机器人放在一个格子里,面朝上下左右四个方向之一发出激光直到射到障碍物为止,沿途都是看守范围.机器人不会 ...

随机推荐

  1. java 实现redis缓存

    由于项目加载时请求数据量过大,造成页面加载很慢.采用redis作缓存,使二次访问时页面,直接取redis缓存. 1.redis连接参数 2.连接redis,设置库 3.配置文件开启缓存 4.mappe ...

  2. leetcode-最长无重复字符的子串

    参考他的人代码:https://blog.csdn.net/littlebai07/article/details/79100081 给定一个字符串,找出不含有重复字符的最长子串的长度. 示例 1: ...

  3. 【setUp-tearDown】线程组开始,结束各执行一次

    使用setUp线程组的方式  ——> 开始 使用tearDown线程组 的方式 ——>结束

  4. linux下的常用技巧。

    xargs  linux下的多行合并~ [root@]# yum list installed|grep php|awk -F ' ' '{print $1}' php-channel-nrk.noa ...

  5. pthon_flask小汇总

    一.Jinja2中的关键字 1.include关键字 用include可以导入另外一个模板到当前模板中 <pre> {% include 'header.html' %} Body {% ...

  6. C#中委托的发展与匿名函数

    匿名函数(C# 编程指南) 匿名函数是一个“内联”语句或表达式,可在需要委托类型的任何地方使用. 可以使用匿名函数来初始化命名委托,或传递命名委托(而不是命名委托类型)作为方法参数. 共有两种匿名函数 ...

  7. TCP系列32—窗口管理&流控—6、TCP zero windows和persist timer

    一.简介 我们之前介绍过,TCP报文中的window size表示发出这个报文的一端准备多少bytes的数据,当TCP的一端一直接收数据,但是应用层没有及时读取的话,数据一直在TCP模块中缓存,最终受 ...

  8. 【OpenGL】无法启动此程序,因为计算机中丢失 glut32.dll。尝试重新安装该程序以解决此问题。

    运行OpenGL程序的时候报错,如图: 解决方法:把glut32.dll复制到C:\Windows\SysWOW64目录下,而不是像网上教程那样复制到C:\Windows\System32目录下. 原 ...

  9. 【Docker 命令】- rmi命令

    docker rmi : 删除本地一个或多个镜像. 语法 docker rmi [OPTIONS] IMAGE [IMAGE...] OPTIONS说明: -f :强制删除: --no-prune : ...

  10. Shell脚本查看linux系统性能瓶颈

    脚本目的:分析系统资源性能瓶颈 脚本功能: 1.查看CPU利用率与负载(top.vmstat.sar) 2.查看磁盘.Inode利用率与I/O负载(df.iostat.iotop.sar.dstat) ...