Codeforces Round #297 (Div. 2)D. Arthur and Walls
Time Limit: 2 Sec Memory Limit: 512 MBSubmit: xxx Solved: 2xx
题目连接
http://codeforces.com/contest/525/problem/D
Description
Finally it is a day when Arthur has enough money for buying an apartment. He found a great option close to the center of the city with a nice price.
Plan of the apartment found by Arthur looks like a rectangle n × m consisting of squares of size 1 × 1. Each of those squares contains either a wall (such square is denoted by a symbol "*" on the plan) or a free space (such square is denoted on the plan by a symbol ".").
Room in an apartment is a maximal connected area consisting of free squares. Squares are considered adjacent if they share a common side.
The old Arthur dream is to live in an apartment where all rooms are rectangles. He asks you to calculate minimum number of walls you need to remove in order to achieve this goal. After removing a wall from a square it becomes a free square. While removing the walls it is possible that some rooms unite into a single one.
Input
The first line of the input contains two integers n, m (1 ≤ n, m ≤ 2000) denoting the size of the Arthur apartments.
Following n lines each contain m symbols — the plan of the apartment.
If the cell is denoted by a symbol "*" then it contains a wall.
If the cell is denoted by a symbol "." then it this cell is free from walls and also this cell is contained in some of the rooms.
Output
Output n rows each consisting of m symbols that show how the Arthur apartment plan should look like after deleting the minimum number of walls in order to make each room (maximum connected area free from walls) be a rectangle.
If there are several possible answers, output any of them.
Sample Input
5 5
.*.*.
*****
.*.*.
*****
.*.*.
6 7
***.*.*
..*.*.*
*.*.*.*
*.*.*.*
..*...*
*******
4 5
.....
.....
..***
..*..
Sample Output
.*.*.
*****
.*.*.
*****
.*.*.
***...*
..*...*
..*...*
..*...*
..*...*
*******
.....
.....
.....
.....
HINT
题意:
给你一个n*m的田地,有一些*的地方是可以移除变成"。"的,然后问你移除最少的"*",使的每一个"。"的联通块都是矩形题解:
爆搜! DFS、BFS、乱搞都能过,只要姿势优美!代码:
//qscqesze #include <cstdio> #include <cmath> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <set> #include <vector> #include <sstream> #include <queue> #include <typeinfo> #include <fstream> #include <map> typedef long long ll; using namespace std; //freopen("D.in","r",stdin); //freopen("D.out","w",stdout); #define sspeed ios_base::sync_with_stdio(0);cin.tie(0) #define maxn 4001 #define mod 10007 #define eps 1e-9 //const int inf=0x7fffffff; //无限大 const int inf=0x3f3f3f3f; /* */ //************************************************************************************** inline ll read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } string g[maxn]; int n,m; void check(int x,int y) { if(x<0||x>=n||y<0||y>=m) return; int cnt=0; for(int i=0;i<2;i++) for(int j=0;j<2;j++) if(g[x+i][y+j]=='.') cnt++; if(cnt==3) { for(int i=0;i<2;i++) for(int j=0;j<2;j++) g[x+i][y+j]='.'; for(int i=-1;i<2;i++) for(int j=-1;j<2;j++) check(x+i,y+j); } return; } int main() { n=read(),m=read(); for(int i=0;i<n;i++) { cin>>g[i]; } for(int i=0;i<n;i++) { for(int j=0;j<m;j++) { check(i,j); } } for(int i=0;i<n;i++) { cout<<g[i]<<endl; } }
Codeforces Round #297 (Div. 2)D. Arthur and Walls
Time Limit: 2 Sec Memory Limit: 512 MBSubmit: xxx Solved: 2xx
题目连接
http://codeforces.com/contest/525/problem/D
Description
Finally it is a day when Arthur has enough money for buying an apartment. He found a great option close to the center of the city with a nice price.
Plan of the apartment found by Arthur looks like a rectangle n × m consisting of squares of size 1 × 1. Each of those squares contains either a wall (such square is denoted by a symbol "*" on the plan) or a free space (such square is denoted on the plan by a symbol ".").
Room in an apartment is a maximal connected area consisting of free squares. Squares are considered adjacent if they share a common side.
The old Arthur dream is to live in an apartment where all rooms are rectangles. He asks you to calculate minimum number of walls you need to remove in order to achieve this goal. After removing a wall from a square it becomes a free square. While removing the walls it is possible that some rooms unite into a single one.
Input
The first line of the input contains two integers n, m (1 ≤ n, m ≤ 2000) denoting the size of the Arthur apartments.
Following n lines each contain m symbols — the plan of the apartment.
If the cell is denoted by a symbol "*" then it contains a wall.
If the cell is denoted by a symbol "." then it this cell is free from walls and also this cell is contained in some of the rooms.
Output
Output n rows each consisting of m symbols that show how the Arthur apartment plan should look like after deleting the minimum number of walls in order to make each room (maximum connected area free from walls) be a rectangle.
If there are several possible answers, output any of them.
Sample Input
5 5
.*.*.
*****
.*.*.
*****
.*.*.
6 7
***.*.*
..*.*.*
*.*.*.*
*.*.*.*
..*...*
*******
4 5
.....
.....
..***
..*..
Sample Output
.*.*.
*****
.*.*.
*****
.*.*.
***...*
..*...*
..*...*
..*...*
..*...*
*******
.....
.....
.....
.....
HINT
题意:
给你一个n*m的田地,有一些*的地方是可以移除变成"。"的,然后问你移除最少的"*",使的每一个"。"的联通块都是矩形题解:
爆搜! DFS、BFS、乱搞都能过,只要姿势优美!代码:
//qscqesze #include <cstdio> #include <cmath> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <set> #include <vector> #include <sstream> #include <queue> #include <typeinfo> #include <fstream> #include <map> typedef long long ll; using namespace std; //freopen("D.in","r",stdin); //freopen("D.out","w",stdout); #define sspeed ios_base::sync_with_stdio(0);cin.tie(0) #define maxn 4001 #define mod 10007 #define eps 1e-9 //const int inf=0x7fffffff; //无限大 const int inf=0x3f3f3f3f; /* */ //************************************************************************************** inline ll read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } string g[maxn]; int n,m; void check(int x,int y) { if(x<0||x>=n||y<0||y>=m) return; int cnt=0; for(int i=0;i<2;i++) for(int j=0;j<2;j++) if(g[x+i][y+j]=='.') cnt++; if(cnt==3) { for(int i=0;i<2;i++) for(int j=0;j<2;j++) g[x+i][y+j]='.'; for(int i=-1;i<2;i++) for(int j=-1;j<2;j++) check(x+i,y+j); } return; } int main() { n=read(),m=read(); for(int i=0;i<n;i++) { cin>>g[i]; } for(int i=0;i<n;i++) { for(int j=0;j<m;j++) { check(i,j); } } for(int i=0;i<n;i++) { cout<<g[i]<<endl; } }