D. Block Tower

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

After too much playing on paper, Iahub has switched to computer games. The game he plays is called "Block Towers". It is played in a rectangular grid with n rows and m columns (it contains n × m cells). The goal of the game is to build your own city. Some cells in the grid are big holes, where Iahub can't build any building. The rest of cells are empty. In some empty cell Iahub can build exactly one tower of two following types:

  1. Blue towers. Each has population limit equal to 100.
  2. Red towers. Each has population limit equal to 200. However, it can be built in some cell only if in that moment at least one of the neighbouring cells has a Blue Tower. Two cells are neighbours is they share a side.

Iahub is also allowed to destroy a building from any cell. He can do this operation as much as he wants. After destroying a building, the other buildings are not influenced, and the destroyed cell becomes empty (so Iahub can build a tower in this cell if needed, see the second example for such a case).

Iahub can convince as many population as he wants to come into his city. So he needs to configure his city to allow maximum population possible. Therefore he should find a sequence of operations that builds the city in an optimal way, so that total population limit is as large as possible.

He says he's the best at this game, but he doesn't have the optimal solution. Write a program that calculates the optimal one, to show him that he's not as good as he thinks.

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 500). Each of the next n lines contains m characters, describing the grid. The j-th character in the i-th line is '.' if you're allowed to build at the cell with coordinates (i, j) a tower (empty cell) or '#' if there is a big hole there.

Output

Print an integer k in the first line (0 ≤ k ≤ 106) — the number of operations Iahub should perform to obtain optimal result.

Each of the following k lines must contain a single operation in the following format:

  1. «B x y» (1 ≤ x ≤ n, 1 ≤ y ≤ m) — building a blue tower at the cell (x, y);
  2. «R x y» (1 ≤ x ≤ n, 1 ≤ y ≤ m) — building a red tower at the cell (x, y);
  3. «D x y» (1 ≤ x ≤ n, 1 ≤ y ≤ m) — destroying a tower at the cell (x, y).

If there are multiple solutions you can output any of them. Note, that you shouldn't minimize the number of operations.

Sample test(s)
Input
2 3
..#
.#.
Output
4
B 1 1
R 1 2
R 2 1
B 2 3
Input
1 3
...
Output
5
B 1 1
B 1 2
R 1 3
D 1 2
R 1 2

注意题意 要求只要是房屋住的人数最多的其中一组合理的解即可

我们先把每个空区域建上B 那么凡是连同的区域最终最少可以只留下一个B区域 其他全为R 利用栈 深搜到连通块的底部 在递归回去时可以保证改变的区域之前一定存在B区域


 1 #include<cstring>
 2 #include<iostream>
 3 #include<cstdio>
 4 #include<cstdlib>
 5 #include<algorithm>
 6 #include<cmath>
 7 #include<sstream>
 8 #define AA struct ss
 9 #define INF 0x3f3f3f3f
10 #include<queue>
11 using namespace std;
12 
13 int dir[][6]={{0,1},{0,-1},{-1,0},{1,0}};
14 int n,m,vis[505][505];
15 char g[505][505];
16 int sum;
17 queue<AA>que;
18 
19 AA{
20   int x,y;
21   char c;
22 };
23 
24 bool judge(int a,int b)
25 {
26     if(a>=0&&a<n&&b>=0&&b<m) return true;
27     return false ;
28 }
29 
30 void dfs(int a,int b)
31 {
32     int x1,y1;
33     for(int i=0;i<4;i++)
34     {
35         x1=a+dir[i][0],y1=b+dir[i][1];
36          //cout<<x1<<' '<<y1<<' '<<g[x1][y1]<<endl;
37         if(judge(x1,y1)&&!vis[x1][y1]&&g[x1][y1]=='B')
38         {
39            // cout<<x1<<' '<<y1<<endl;
40             vis[x1][y1]=1;
41             dfs(x1,y1);
42         }
43     }
44     que.push({a,b,'D'});
45     que.push({a,b,'R'});
46     g[a][b]=='R';
47     sum+=2;
48 }
49 
50 int main()
51 {
52     while(scanf("%d%d",&n,&m)!=EOF)
53     {
54         sum=0;
55         memset(vis,0,sizeof(vis));
56         while(que.size()) que.pop();
57 
58         getchar();
59         for(int i=0;i<n;i++){
60             for(int j=0;j<m;j++)
61             {
62                 scanf("%c",&g[i][j]);
63                 if(g[i][j]=='.') {
64                     sum++;
65                     que.push({i,j,'B'});
66                     g[i][j]='B';
67                 }
68             }
69             getchar();
70         }
71 
72         for(int i=0;i<n;i++)
73             for(int j=0;j<m;j++)
74         {
75             if(!vis[i][j]&&g[i][j]=='B')
76             {
77                 vis[i][j]=1;
78                 for(int k=0;k<4;k++)
79                 {
80                     int x1=i+dir[k][0];
81                     int y1=j+dir[k][1];
82                     if(judge(x1,y1)&&!vis[x1][y1]&&g[x1][y1]=='B')
83                     {
84                         vis[x1][y1]=1;
85                         dfs(x1,y1);
86                     }
87                 }
88             }
89         }
90 
91        printf("%d\n",sum);
92        while(que.size())
93        {
94            AA k=que.front();
95            printf("%c %d %d\n",k.c,k.x+1,k.y+1);
96            que.pop();
97        }
98     }
99 }

 

posted on 2015-03-10 14:40  wsa  阅读(155)  评论(0编辑  收藏  举报

导航