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. python学习笔记03 --------------程序交互与格式化输出

    1.读取用户输入内容 语法:input() 例: name = input('你的名字是?) print('你好'+name) 程序会等待用户输入名字后打印:你好(用户输入的名字) 注意:input接 ...

  2. 【system.folder】使用说明

    对象:system.folder 说明:提供一系列针对文件夹的操作 目录: 方法 返回 说明 system.folder.exists(folderPath) [True | False] 检测指定文 ...

  3. [2017 - 2018 ACL] 对话系统论文研究点整理

    (论文编号及摘要见 [2017 ACL] 对话系统. [2018 ACL Long] 对话系统. 论文标题[]中最后的数字表示截止2019.1.21 google被引次数) 1. Domain Ada ...

  4. vue.js学习之 打包为生产环境后,页面为白色

    vue.js学习之 打包为生产环境后,页面为白色 一:配置问题 当我们将项目打包为生产环境后,在dist文件夹下打开index.html,会发现页面为白色. 1:打开config>index.j ...

  5. 总结Canvas和SVG的区别

    参考链接: 菜鸟教程 HTML5 内联SVG 经典面试题(讨论canvas与svg的区别) Canvas SVG 通过 JavaScript 来绘制 2D 图形 是一种使用 XML 描述 2D 图形的 ...

  6. ACM 第一天

    标签库元素: 队列<queue> FIFO 栈 <stack>  FICO 集合 set 不定长数组  vector 映射 map Maximum Multiple Time ...

  7. TCP系列29—窗口管理&流控—3、Nagle算法

    一.Nagle算法概述 之前我们介绍过,有一些交互式应用会传递大量的小包(称呼为tinygrams),这些小包的负载可能只有几个bytes,但是TCP和IP的基本头就有40bytes,如果大量传递这种 ...

  8. Debian 7 amd64问题

    Debian 7 发布了有1段时间,最近才在自己的电脑硬盘安装,用户体验还算可以.在安装Debian的过程中,有问题还是要记录一下的. 注意:遇到的问题跟硬件体系相关,可能在个别电脑没法重现. 1.默 ...

  9. 数论的欧拉定理证明 &amp; 欧拉函数公式(转载)

    欧拉函数 :欧拉函数是数论中很重要的一个函数,欧拉函数是指:对于一个正整数 n ,小于 n 且和 n 互质的正整数(包括 1)的个数,记作 φ(n) . 完全余数集合:定义小于 n 且和 n 互质的数 ...

  10. 【week4】课堂Scrum站立会议

    项目:连连看游戏 小组名称:天天向上(旁听) 小组成员:张政 张金生 李权 武致远 已完成任务 1.本项目采用c#. 2. 初步界面. 形成一个windows下的游戏界面,每个需要消除的方块是一个bu ...