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. NO.01---今天聊聊Vuex的简单入门

    作为一款个人认为非常牛x的框架,个人使用起来得心应手,所以近期就记录一下这款框架吧. 首先说一说 Vuex 是什么? 官方给出的解释:Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式.它 ...

  2. spark-submit配置说明

    <Spark 官方文档>Spark配置 spark-1.6.0 原文地址 Spark配置 Spark有以下三种方式修改配置: Spark properties (Spark属性)可以控制绝 ...

  3. 前端整合MathjaxJS的配置笔记

    这篇文章是我给Pinghsu主题添加数学公式功能的一个小教程,包含我大量的官方文档阅读后的实践,跟着这篇配置教程走,你可以做到给任何一个需要数学公式的站点添加支持. 教程如标题所述是针对 Mathja ...

  4. PCB各层介绍及AD软件画PCB时的规则

    好久没画过板了,最近因为工作关系,硬件软件全部得自己来,不得不重新打开闲置很久的AltiumDesigner.以前做过点乱七八糟的笔记,本来想回头翻看一下,结果哪儿也找不到,估计已经被不小心删掉了.  ...

  5. IE中的activex控件

    1.tree控件 DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HE ...

  6. 《剑指offer》---顺时针打印矩阵

    本文算法使用python3实现 1. 问题1 1.1 题目描述:   输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下矩阵: 1 2 3 4 5 6 7 8 9 10 ...

  7. Ansys Workbench热流固耦合仿真配置

    1.Fluent-Thermal-Structural瞬态分析 此模块连接在fluent已实现流体和固体的热流耦合,传递至thermal实际上只是将流体表面温度作为热载荷施加在固体的液体通道表面,极大 ...

  8. HDU 2115 I Love This Game

    http://acm.hdu.edu.cn/showproblem.php?pid=2115 Problem Description Do you like playing basketball ? ...

  9. 父类与子类的转换as,is

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  10. NCAIOC

    NCAIOC Npm Cli All In One Client https://github.com/xgqfrms/NCAIOC https://cdn.xgqfrms.xyz/web-ide/i ...