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列的网格,网格种有重要位置和障碍物.要求用最少的机器人看守所有重要的位置,每个机器人放在一个格子里,面朝上下左右四个方向之一发出激光直到射到障碍物为止,沿途都是看守范围.机器人不会 ...
随机推荐
- 【WXS数据类型】String
属性: 名称 值类型 说明 [String].constructor [String] 返回值为“String”,表示类型的结构字符串 [String].length [Number] 返回该字符串的 ...
- 373. Partition Array by Odd and Even【LintCode java】
Description Partition an integers array into odd number first and even number second. Example Given ...
- 数据库Mysql的学习(五)-运算符与函数
,store,store,store,store FROM bookinfo;//加减乘除取余 //余额大于200 //余额不等于200 SELECT * FROM readerinfo WHERE ...
- javaee Listener
Servlet API 中定义了几种监听器,大多数尽管不是全部,都将监听某种形式的会话活动,通过实现对应事件的监听器接口订阅某个事件,然后在部署描述符中添加 <listener> 配置,或 ...
- Matlab结构体定义
定义一个Matlab结构体的代码,以飞行器为例: classdef flightpro properties pos = [ ]; RGB = [ ]; rate; type; end end
- location 匹配规则 (NGINX)
转:https://moonbingbing.gitbooks.io/openresty-best-practices/ngx/nginx_local_pcre.html location 匹配规则 ...
- nginx 添加的配置信息
使用logrotate管理Nginx日志配置如下: [root@vm-10-129-93-51 nginx]# vi /etc/logrotate.d/nginx /letv/log/nginx/*. ...
- angularJS遇到的坑
最近在用angularjs做一些东西,由于学艺不精,对angularjs了解不够,导致经常会不小心掉进一些自己挖的坑里(⊙_⊙),在这里记下来,谨防又踩. 1.angularjs ng-show no ...
- VUE中组件的使用
关于vue组件引用 使用Nodejs的方法 被引用的组件要暴露 module.exports={}; 引用时 用 var abc= require("组件的路径") 然后 就可以用 ...
- Thunder团队Beta周贡献分规则
小组名称:Thunder 项目名称:i阅app 组长:王航 成员:李传康.翟宇豪.邹双黛.苗威.宋雨.胡佑蓉.杨梓瑞 分配规则 规则1:基础分,拿出总分的20%(8分)进行均分,剩下的80%(32分) ...