POJ 2226

Muddy Fields
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 7557 Accepted: 2791

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

Hint

OUTPUT DETAILS: 

Boards 1, 2, 3 and 4 are placed as follows: 
1.2. 
.333 
444. 
..2. 
Board 2 overlaps boards 3 and 4.

Source

 
每个点所在的行连通块对点所在的列连通快连一条边,求二分图最大匹配即可。
 
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 #include <iostream>
 5 #include <vector>
 6 
 7 using namespace std;
 8 
 9 #define maxn 55
10 #define maxnode 2505
11 
12 char s[maxn][maxn];
13 int un,vn,r,c;
14 int match[maxnode];
15 bool vis[maxnode];
16 vector<int> G[maxnode];
17 int row[maxn][maxn],col[maxn][maxn];
18 
19 bool dfs(int u) {
20         for(int i = 0; i < G[u].size(); ++i) {
21                 int v = G[u][i];
22                 if(vis[v]) continue;
23                 vis[v] = 1;
24                 if(match[v] == -1 || dfs(match[v])) {
25                         match[v] = u;
26                         return true;
27 
28                 }
29         }
30 
31         return false;
32 }
33 
34 void build() {
35         un = vn = 0;
36 
37         for(int i = 1; i <= r; ++i) {
38                 for(int j = 0; j < c; ++j) {
39                         if(s[i][j] == '*') {
40                                 row[i][j] = s[i][j - 1] == '*' ?
41                                             row[i][j - 1] : ++un;
42                         }
43 
44                 }
45         }
46 
47         for(int i = 0; i < c; ++i) {
48                 for(int j = 1; j <= r; ++j) {
49                         if(s[j][i] == '*') {
50                                     col[j][i] = s[j - 1][i] == '*' ?
51                                                 col[j - 1][i] : ++vn;
52                         }
53                 }
54         }
55 
56         for(int i = 1; i <= r; ++i) {
57                 for(int j = 0; j < c; ++j) {
58                         if(s[i][j] == '*') {
59                                // printf("%d %d\n",row[i][j],col[i][j]);
60                                 G[ row[i][j] ].push_back(col[i][j]);
61                         }
62                 }
63         }
64 
65 
66 }
67 
68 void solve() {
69 
70         build();
71 
72         int ans = 0;
73 
74         for(int i = 1; i <= vn; ++i) match[i] = -1;
75 
76         for(int i = 1; i <= un; ++i) {
77                 memset(vis,0,sizeof(vis));
78                 if(dfs(i)) ++ans;
79         }
80 
81         printf("%d\n",ans);
82 }
83 
84 int main() {
85         freopen("sw.in","r",stdin);
86 
87         scanf("%d%d",&r,&c);
88 
89         for(int i = 1; i <= r; ++i) {
90                 scanf("%s",s[i]);
91                 //puts(s[i]);
92         }
93 
94         solve();
95 
96         return 0;
97 }
View Code

 

转载于:https://www.cnblogs.com/hyxsolitude/p/3608689.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值