Muddy Fields
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 10044   Accepted: 3743

Description

Rain has pummeled the cows' field, a rectangular grid of R rows and C columns (1 <= R <= 50, 1 <= C <= 50). While good for the grass, the rain makes some patches of bare earth quite muddy. The cows, being meticulous grazers, don't want to get their hooves dirty while they eat.

To prevent those muddy hooves, Farmer John will place a number of wooden boards over the muddy parts of the cows' field. Each of the boards is 1 unit wide, and can be any length long. Each board must be aligned parallel to one of the sides of the field.

Farmer John wishes to minimize the number of boards needed to cover the muddy spots, some of which might require more than one board to cover. The boards may not cover any grass and deprive the cows of grazing area but they can overlap each other.

Compute the minimum number of boards FJ requires to cover all the mud in the field.

Input

* Line 1: Two space-separated integers: R and C

* Lines 2..R+1: Each line contains a string of C characters, with '*' representing a muddy patch, and '.' representing a grassy patch. No spaces are present.

Output

* Line 1: A single integer representing the number of boards FJ needs.

Sample Input

4 4
*.*.
.***
***.
..*.

Sample Output

4
思路:建图,求出横着的board与竖着的board。若两个board相交则建边,那么边其实为'*'。二分图的最小顶点覆盖即为答案。
#include <cstdio>
#include <cstring>
#include <vector>
using namespace std;
const int MAXN=;
int n,m;
char mz[MAXN][MAXN];
int set_x[MAXN][MAXN],lenx;
int set_y[MAXN][MAXN],leny;
vector<int> arc[MAXN];
void build_graph()
{
memset(set_x,,sizeof(set_x));
memset(set_y,,sizeof(set_y));
lenx=;
leny=;
for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
int tag=;
if(mz[i][j]=='*')
{
while(j<m&&mz[i][j]=='*')
{
if(!tag)
{
tag=;
lenx++;
}
set_x[i][j]=lenx;
j++;
}
}
}
}
for(int j=;j<m;j++)
{
for(int i=;i<n;i++)
{
int tag=;
if(mz[i][j]=='*')
{
while(i<n&&mz[i][j]=='*')
{
if(!tag)
{
tag=;
leny++;
}
set_y[i][j]=leny;
i++;
}
}
}
} for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
if(mz[i][j]=='*')
{
int u=set_x[i][j];
int v=set_y[i][j]+lenx;
arc[u].push_back(v);
arc[v].push_back(u);
}
}
}
} int match[MAXN],vis[MAXN];
bool dfs(int u)
{
for(int i=;i<arc[u].size();i++)
{
int to=arc[u][i];
if(!vis[to])
{
vis[to]=;
int w=match[to];
if(w==-||dfs(w))
{
match[to]=u;
match[u]=to;
return true;
}
}
}
return false;
}
int max_flow()
{
int ans=;
memset(match,-,sizeof(match));
for(int i=;i<=lenx;i++)
{
if(match[i]==-)
{
memset(vis,,sizeof(vis));
if(dfs(i)) ans++;
}
}
return ans;
}
int main()
{
while(scanf("%d%d",&n,&m)!=EOF)
{
for(int i=;i<MAXN;i++) arc[i].clear();
for(int i=;i<n;i++)
{
scanf("%s",mz[i]);
}
build_graph();
int res=max_flow();
printf("%d\n",res);
}
return ;
}

最新文章

  1. 计算机图形学 - 图形变换(opengl版)
  2. 整数划分问题-解法汇总(暂有DP-递归)
  3. java_easyui体系之DataGrid(4)[转]
  4. selenium如何操作cookies实现免登录
  5. 从MySQL到Redis 提升数据迁移的效率
  6. STC89c52RC 的EEPROM和AVR的EEPROM
  7. Tiny Spring 分析一
  8. ACM比赛(进制转换)
  9. AssetManager asset使用
  10. 吐槽CSDN--想赚钱想疯了--强行升级皮肤--增加广告位
  11. CCF-201509-2-日期计算
  12. Jmeter----【Mac电脑】环境配置与打开Jmeter界面
  13. tcp的4次挥手、三次握手
  14. [development][semaphore] 信号量/信号灯/信号标/旗语
  15. Python3基础 __len__,__getitem__ 记录列表中元素访问的次数 定制不可变序列,下标字典
  16. PHP原生:分享一个轻量级的缓存类=&gt;cache.php
  17. JVM调优总结 + jstat 分析
  18. Activiti进行时——企业工作流生命周期贯通 (zhuan)
  19. hdu3374(最小最大表示法以及kmp)
  20. how to be an efficient man

热门文章

  1. hdu 1540 Tunnel Warfare 线段数区间合并
  2. Java实现的一个小说采集程序
  3. TextView两种显示link的方法
  4. linux配置静态ip,关闭防火墙
  5. JT809 加密解密算法
  6. spring3: AOP 之切面实例化模型 ——跟我学spring3
  7. 分享知识-快乐自己:MYSQL之內链接 左链接 右链接 区别
  8. Appium移动自动化测试(三)--自动化测试demo
  9. WSL安装xfce4
  10. VS10x CodeMap