HDU1045:Fire Net(二分图匹配 / DFS)
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)的更多相关文章
- HDU1045 Fire Net —— 二分图最大匹配
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1045 Fire Net Time Limit: 2000/1000 MS (Java/Others) ...
- hdu 1045 Fire Net 二分图匹配 && HDU-1281-棋盘游戏
题意:任意两个个'车'不能出现在同一行或同一列,当然如果他们中间有墙的话那就没有什么事,问最多能放多少个'车' 代码+注释: 1 //二分图最大匹配问题 2 //难点在建图方面,如果这个图里面一道墙也 ...
- 【HDU-1045,Fire Net-纯暴力简单DFS】
原题链接:点击! 大致题意:白块表示可以放置炮台的位置——每个炮台可以攻击到上下左右的直线上的炮台(也就是说在它的上下左右直线上不可以再放置炮台,避免引起互相攻击),黑块表示隔离墙的位置——不可放 ...
- 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 ...
- hdu 5727 Necklace dfs+二分图匹配
Necklace/center> 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5727 Description SJX has 2*N mag ...
- HDU 1045 Fire Net 【连通块的压缩 二分图匹配】
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1045 Fire Net Time Limit: 2000/1000 MS (Java/Others) ...
- A - Fire Net - hdu 1045(二分图匹配)
题意:一个阵地可以向四周扫射,求出来最多能修多少个阵地,墙不可以被扫射透,阵地不能同行或者或者列(有墙隔着例外) 分析:很久以前就做过这道题..当时是练习深搜来着,不过时间复杂度比较高,现在再看突然发 ...
- POJ3057 Evacuation 二分图匹配+最短路
POJ3057 Evacuation 二分图匹配+最短路 题目描述 Fires can be disastrous, especially when a fire breaks out in a ro ...
- UVA 12549 - 二分图匹配
题意:给定一个Y行X列的网格,网格种有重要位置和障碍物.要求用最少的机器人看守所有重要的位置,每个机器人放在一个格子里,面朝上下左右四个方向之一发出激光直到射到障碍物为止,沿途都是看守范围.机器人不会 ...
随机推荐
- lintcode172 删除元素
删除元素 给定一个数组和一个值,在原地删除与值相同的数字,返回新数组的长度. 元素的顺序可以改变,并且对新的数组不会有影响. 您在真实的面试中是否遇到过这个题? Yes 样例 给出一个数组 [0, ...
- 一个简单的页面弹窗插件 jquery.pageMsgFrame.js
页面弹窗是网站中常用的交互效果,它可以强提示网站的某些信息给用户,或者作用于某些信息的修改等等功能. 这几天在做一个项目的时候,就顺捎把这个插件写一下,栽棵树,自己乘凉吧. 原创博文,转载请注明出处: ...
- [Clr via C#读书笔记]Cp2生成打包部署和管理应用程序和类型
Cp2生成打包部署和管理应用程序和类型 部署问题 DLL Hell;安装的复杂性:安全性:代码访问安全性. csc.exe的简单使用. 元数据 定义表:引用表:清单表: 程序集 重用,版本控制,安全的 ...
- Python基础 之 set集合 与 字符串格式化
数据类型的回顾与总结 可变与不可变1.可变:列表,字典2.不可变:字符串,数字,元组 访问顺序:1.直接访问:数字2.顺序访问:字符串,列表,元祖3.映射:字典 存放元素个数:容器类型:列表,元祖,字 ...
- OpenMPI运行问题:enough slots available in the system
版本: Open MPI 3.0.1 编译好可执行的C语言程序后,使用 mpirun -np 3 Test 命令,发现没有正常运行,而是报错: There are not enough slots a ...
- iis 10 重新注册iis
iis 10 使用该命令 提示 版本不支持 C:\WINDOWS\system32>c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_ ...
- Spring MVC 整合Swagger的一些问题总结
在做Spring MVC 整合swagger的时候,遇到的两个问题: 第一个问题 在网上找了一些Spring MVC 和Swagger的例子,照着一步步的配置,结果,到最后,项目都起来了,没有任何问题 ...
- [leetcode-663-Equal Tree Partition]
Given a binary tree with n nodes, your task is to check if it's possible to partition the tree to tw ...
- canvas学习(四):高级属性
一:阴影 示例:绘制一个带有阴影的正方形 var canvas = document.getElementById("myCanvas") var ctx = canvas.get ...
- Python学习之路5 - 函数
函数 定义方式: def func(): "这里面写函数的描述" 这里写代码 return x #如果没有返回值就叫"过程",函数和过程的区别就是有无返回值 实 ...