您的位置:首页 > 其它

codeforces723D Lakes in Berland 搜索

2016-10-06 10:05 369 查看
D. Lakes in Berland

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

The map of Berland is a rectangle of the size n × m, which consists of cells of size 1 × 1.
Each cell is either land or water. The map is surrounded by the ocean.

Lakes are the maximal regions of water cells, connected by sides, which are not connected with the ocean. Formally, lake is a set of water cells, such that it's possible to get from any cell of
the set to any other without leaving the set and moving only to cells adjacent by the side, none of them is located on the border of the rectangle, and it's impossible to add one more water cell to the set such that it will be connected with any other cell.

You task is to fill up with the earth the minimum number of water cells so that there will be exactly k lakes
in Berland. Note that the initial number of lakes on the map is not less than k.

Input

The first line of the input contains three integers n, m and k (1 ≤ n, m ≤ 50, 0 ≤ k ≤ 50) —
the sizes of the map and the number of lakes which should be left on the map.

The next n lines contain m characters
each — the description of the map. Each of the characters is either '.' (it means that the corresponding cell is water) or '*'
(it means that the corresponding cell is land).

It is guaranteed that the map contain at least k lakes.

Output

In the first line print the minimum number of cells which should be transformed from water to land.

In the next n lines print m symbols
— the map after the changes. The format must strictly follow the format of the map in the input data (there is no need to print the size of the map). If there are several answers, print any of them.

It is guaranteed that the answer exists on the given data.

Examples

input
5 4 1
****
*..*
****
**.*
..**


output
1
****
*..*
****
****
..**


input
3 3 0
***
*.*
***


output
1
***
***
***


Note

In the first example there are only two lakes — the first consists of the cells (2, 2) and (2, 3),
the second consists of the cell (4, 3). It is profitable to cover the second lake because it is smaller. Pay attention that the area of water
in the lower left corner is not a lake because this area share a border with the ocean.

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <map>
#include <queue>
#include <cmath>
#include <vector>
#include <string>

using namespace std;

struct node {
int x, y;
int area;
node(int x, int y, int area) : x(x), y(y), area(area) {}
node(int x, int y) : x(x), y(y) {}
node() {}
bool operator < (const node& on) const {
return this->area < on.area;
}
};

int n, m, k;
char mapp[55][55];
int vis[55][55];
int dir[][2] = { { 0, 1 }, { 1, 0 }, { 0, -1 }, { -1, 0 } };

vector<node> v;

bool check(int x, int y) {
if (x < 0 || x >= n || y < 0 || y >= m || vis[x][y]) {
return false;
}
return true;
}

bool checkf(int x, int y) {
if (x < 0 || x >= n || y < 0 || y >= m || mapp[x][y] == '*' || vis[x][y] == 2) {
return false;
}
return true;
}

//排除靠海水域
void bfso(int x, int y) {
queue<node> Q;
Q.push(node(x, y));
vis[x][y] = true;
while (!Q.empty()) {
node tn = Q.front(); Q.pop();
for (int i = 0; i < 4; i++) {
int tx = tn.x + dir[i][0], ty = tn.y + dir[i][1];
if (check(tx, ty)) {
Q.push(node(tx, ty));
vis[tx][ty] = true;
}
}
}
}

//算面积,保存湖的位置
void bfs(int x, int y) {
queue<node> Q;
int maxa = 0;
Q.push(node(x, y));
vis[x][y] = true;
while (!Q.empty()) {
node tn = Q.front(); Q.pop();
maxa++;
for (int i = 0; i < 4; i++) {
int tx = tn.x + dir[i][0], ty = tn.y + dir[i][1];
if (check(tx, ty)) {
Q.push(node(tx, ty));
vis[tx][ty] = true;
}
}
}
//将搜素的湖的位置和面积保存下来,用于后续排序和填充
v.push_back(node(x, y, maxa));
}

//用陆地填充湖
void Fill(int x, int y) {
queue<node> Q;
Q.push(node(x, y));
mapp[x][y] = '*';
vis[x][y] = 2;
while (!Q.empty()) {
node tn = Q.front(); Q.pop();
for (int i = 0; i < 4; i++) {
int tx = tn.x + dir[i][0], ty = tn.y + dir[i][1];
if (checkf(tx, ty)) {
Q.push(node(tx, ty));
mapp[tx][ty] = '*';
vis[tx][ty] = 2;
}
}
}
}

int main()
{
cin >> n >> m >> k;
memset(vis, 0, sizeof(vis));
for (int i = 0; i < n; i++) {
scanf("%s", mapp[i]);
for (int j = 0; j < m; j++) {
if (mapp[i][j] == '*') {
vis[i][j] = true;
}
}
}
//把边缘靠海的水域排除掉
for (int i = 0; i < n; i++) {
if (!vis[i][0]) {
bfso(i, 0);
}
if (!vis[i][m - 1]) {
bfso(i, m - 1);
}
}
for (int i = 0; i < m; i++) {
if (!vis[0][i]) {
bfso(0, i);
}
if (!vis[n - 1][i]) {
bfso(n - 1, i);
}
}

v.clear();
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (!vis[i][j]) {
bfs(i, j);
}
}
}
//从小到大排序,尽可能先填充面积小的
sort(v.begin(), v.end());

int ans = 0, len = v.size();
for (int i = 0; i < len - k; i++) {
ans += v[i].area;
Fill(v[i].x, v[i].y);
}
cout << ans << endl;
for (int i = 0; i < n; i++) {
puts(mapp[i]);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforces 搜索