Codeforces Round #191 (Div. 2) D. Block Tower
2 seconds
256 megabytes
standard input
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:
- Blue towers. Each has population limit equal to 100.
- 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.
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.
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:
- «B x y» (1 ≤ x ≤ n, 1 ≤ y ≤ m) —
building a blue tower at the cell (x, y); - «R x y» (1 ≤ x ≤ n, 1 ≤ y ≤ m) —
building a red tower at the cell (x, y); - «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.
2 3
..#
.#.
4
B 1 1
R 1 2
R 2 1
B 2 3
1 3
...
5
B 1 1
B 1 2
R 1 3
D 1 2
R 1 2
在 ' . ' 上建造房子,蓝色容纳100人。红色容纳200人,在106
步数以内建造尽可能大的容纳量,可是在建造红色房子时,与它相邻的必须有蓝色房子。
思路:先将全部建成蓝色。图最大是500*500,假设三种步骤都进行是3*500*500,不会超过106
题目并没有要求步骤尽量少。仅仅须要满足容纳量尽量多就可以,所以
所有建成蓝色后。再从边界開始改建成红色,因此DFS就可以完毕。
#include <iostream>
#include <stdio.h>
#include <string>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <queue>
#define N 600
using namespace std; char s[N][N];
int vis[N][N]; struct Node
{
char a;
int x,y;
}f[1000009]; int n,m;
int num; int fun(char c,int x,int y)
{
s[x][y]=c;
num++;
f[num].a=c;
f[num].x=x;
f[num].y=y; } void dfs(int x,int y)
{
if(s[x][y]!='B' || vis[x][y] ) return;//假设是'#'或者已经被改造 vis[x][y]=1; if(y>1) dfs(x,y-1);
if(x>1) dfs(x-1,y);
if(y<m) dfs(x,y+1);
if(x<n) dfs(x+1,y); fun('D',x,y);
fun('R',x,y);
return;
} int main()
{
while(~scanf("%d%d",&n,&m))
{
for(int i=1;i<=n;i++)
scanf("%s",s[i]+1); memset(vis,0,sizeof vis);
num=0; for(int i=1;i<=n;i++)//先所有建成’B'
for(int j=1;j<=m;j++)
{
if(s[i][j]=='.')
fun('B',i,j);
} for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
if(s[i][j]=='B')
{
vis[i][j]=1; if(j>1) dfs(i,j-1);
if(i>1) dfs(i-1,j);
if(j<m) dfs(i,j+1);
if(i<n) dfs(i+1,j); }
} printf("%d\n",num);
for(int i=1;i<=num;i++)
{
printf("%c %d %d\n",f[i].a,f[i].x,f[i].y);
} }
return 0;
}
Codeforces Round #191 (Div. 2) D. Block Tower的更多相关文章
- 贪心 Codeforces Round #191 (Div. 2) A. Flipping Game
题目传送门 /* 贪心:暴力贪心水水 */ #include <cstdio> #include <algorithm> #include <cstring> us ...
- Codeforces Round #191 (Div. 2)
在div 188中,幸运的达成了这学期的一个目标:CF1800+,所以这次可以打星去做div2,有点爽. A.Flipping Game 直接枚举 B. Hungry Sequence 由于素数的分布 ...
- codeforces水题100道 第二十题 Codeforces Round #191 (Div. 2) A. Flipping Game (brute force)
题目链接:http://www.codeforces.com/problemset/problem/327/A题意:你现在有n张牌,这些派一面是0,另一面是1.编号从1到n,你需要翻转[i,j]区间的 ...
- Codeforces Round #191 (Div. 2) E题
状态压缩DP,算sum,本来是枚举的,结果TLE了.. #include <iostream> #include <cstring> #include <cstdio&g ...
- Codeforces Round #191 (Div. 2)---A. Flipping Game
Flipping Game time limit per test 1 second memory limit per test 256 megabytes input standard input ...
- Codeforces Round #191 (Div. 2) B. Hungry Sequence(素数筛选法)
. Hungry Sequence time limit per test 1 second memory limit per test 256 megabytes input standard in ...
- Codeforces Round #191 (Div. 2) A. Flipping Game(简单)
A. Flipping Game time limit per test 1 second memory limit per test 256 megabytes input standard inp ...
- Codeforces Round #191 (Div. 2) A. Flipping Game【*枚举/DP/每次操作可将区间[i,j](1=<i<=j<=n)内牌的状态翻转(即0变1,1变0),求一次翻转操作后,1的个数尽量多】
A. Flipping Game time limit per test 1 second memory limit per test 256 megabytes input standard ...
- Codeforces Round #578 (Div. 2)
Codeforces Round #578 (Div. 2) 传送门 A. Hotelier 暴力即可. Code #include <bits/stdc++.h> using names ...
随机推荐
- 打造你自己ajax上传图片
今天,我们需要的图片上传插件,但是,互联网不提供符合他们的需要和易于使用的.所以我写了自己. 方法1,只使用jquery代码,.代码例如以下 <p> <label>上传图片&l ...
- 使用独立PID namespace防止误杀进程
一段错误的代码 首先看一段错误的代码: #!/bin/bash SLICE=100; slppid=1; pidfile=/var/run/vpnrulematch.pid # 停止之前的sleep ...
- Oracle“记录被另一个用户锁住” 无法更新删除的解决办法
1.查看数据库锁,诊断锁的来源及类型: select object_id,session_id,locked_mode from v$locked_object; 或者用以下命令: select b. ...
- poj1836--Alignment(dp,最长上升子序列变形)
Alignment Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 13319 Accepted: 4282 Descri ...
- android编译自己 内置的jar做法
1.首先 android.mk LOCAL_PATH := $(call my-dir) # ===================================================== ...
- 4、深入理解Bean
本节知识点: 1. Bean 的自己主动装配(了解) 2. bean 之间的关系:继承:依赖 3.Bean 的作用域:能够在 <bean> 元素的 scope 属性里设置 Bean 的作用 ...
- Java跨域设置
Access-Control-Allow-Origin 为允许哪些Origin发起跨域请求. 这里设置为"*"表示允许所有,通常设置为所有并不安全,最好指定一下. Access-C ...
- java--基于socket的网络传输开发
继http://blog.csdn.net/gaopeng0071/article/details/10959845此文章内容展开的研究. socket传输是基于tcp的网络传输协议进行的传输,tcp ...
- 移动开发平台-应用之星app制作教程
目前在AppStore.GooglePlay等应用商店里已经有以百万计的Apps,应用程序使移动互联网空间得以无限拓展.很多人梦想着AngryBirds式的奇迹在自己身上发生,他们渴望自己开发的应用程 ...
- Tkinter隐藏窗口再让他显示出来的例子
隐藏主要是 : withdraw()函数. 重新显示出来主要是: update()和deiconify()函数. 来源:http://www.blog.pythonlibrary.org/2012/0 ...