博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LA3029 City Game
阅读量:4600 次
发布时间:2019-06-09

本文共 3824 字,大约阅读时间需要 12 分钟。

Bob is a strategy game programming specialist. In his new city building game the gaming environment is as follows: a city is built up by areas, in which there are streets, trees, factories and buildings. There is still some space in the area that is unoccupied. The strategic task of his game is to win as much rent money from these free spaces. To win rent money you must erect buildings, that can only be rectangular, as long and wide as you can. Bob is trying to find a way to build the biggest possible building in each area. But he comes across some problems — he is not allowed to destroy already existing buildings, trees, factories and streets in the area he is building in. Each area has its width and length. The area is divided into a grid of equal square units. The rent paid for each unit on which you’re building stands is 3$. Your task is to help Bob solve this problem. The whole city is divided into K areas. Each one of the areas is rectangular and has a different grid size with its own length M and width N. The existing occupied units are marked with the symbol ‘R’. The unoccupied units are marked with the symbol ‘F’. Input The first line of the input file contains an integer K — determining the number of datasets. Next lines contain the area descriptions. One description is defined in the following way: The first line contains two integers-area length M ≤ 1000 and width N ≤ 1000, separated by a blank space. The next M lines contain N symbols that mark the reserved or free grid units, separated by a blank space. The symbols used are: R - reserved unit F - free unit In the end of each area description there is a separating line. Output For each data set in the input file print on a separate line, on the standard output, the integer that represents the profit obtained by erecting the largest building in the area encoded by the data set. Sample Input 2 5 6 R F F F F F F F F F F F R R R F F F F F F F F F F F F F F F 5 5 R R R R R R R R R R R R R R R R R R R R R R R R R Sample Output 45 0

 

悬线法典型例题。

//up[i][j]表示矩形高度为up[i][j]  left[i][j]表示最左边能到坐标left[i][j]  right[i][j]表示最右边能到坐标right[i][j]

转移即可,注意细节

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #define min(a, b) ((a) < (b) ? (a) : (b)) 9 #define max(a, b) ((a) > (b) ? (a) : (b))10 #define abs(a) ((a) < 0 ? (-1 * (a)) : (a))11 inline void swap(int &a, int &b)12 {13 int tmp = a;a = b;b = tmp;14 }15 inline void read(int &x)16 {17 x = 0;char ch = getchar(), c = ch;18 while(ch < '0' || ch > '9') c = ch, ch = getchar();19 while(ch <= '9' && ch >= '0') x = x * 10 + ch - '0', ch = getchar();20 if(c == '-') x = -x;21 }22 23 const int INF = 0x3f3f3f3f;24 const int MAXN = 1000 + 10;25 26 int t,n,m,left[MAXN][MAXN],right[MAXN][MAXN],up[MAXN][MAXN],ans;27 char s[MAXN][MAXN];28 //up[i][j]表示矩形高度为up[i][j] left[i][j]表示最左边能到坐标left[i][j] right[i][j]表示最右边能到坐标right[i][j] 29 30 int main()31 {32 read(t);33 for(;t;--t)34 {35 read(n), read(m);36 for(register int i = 1;i <= n;++ i) for(register int j = 1;j <= m;++ j) scanf("%s", &s[i][j]);37 ans = 0;38 for(register int i = 1;i <= n;++ i)39 {40 //左->右维护up和left41 int lo = 0;42 for(register int j = 1;j <= m;++ j)43 {44 if(s[i][j] == 'R') left[i][j] = up[i][j] = 0, lo = j;45 else46 {47 left[i][j] = max(left[i - 1][j], lo + 1);48 up[i][j] = up[i - 1][j] + 1;49 } 50 }51 int ro = m + 1;52 for(register int j = m;j >= 1;-- j)53 {54 if(s[i][j] == 'R') right[i][j] = n + 1, ro = j;55 else right[i][j] = i == 1 ? ro - 1 : min(right[i - 1][j], ro - 1);56 ans = max(ans, (right[i][j] - left[i][j] + 1) * up[i][j]);57 } 58 }59 printf("%d\n", ans * 3);60 }61 return 0;62 }
LA3029

 

转载于:https://www.cnblogs.com/huibixiaoxing/p/8288692.html

你可能感兴趣的文章
ASP.NET AJAX调用 WebService
查看>>
大学三年的反思
查看>>
Get和Post的区别(转)
查看>>
数据库sql中distinct用法注意事项
查看>>
linux系统下单节点hadoop2的配置
查看>>
PAT (Basic Level) Practise 1006. 换个格式输出整数
查看>>
Ubuntu Eclipse 提示颜色
查看>>
温习 数据结构之HuffmanTree
查看>>
dva reduxRouter 跳转路由的参数
查看>>
Code Pages
查看>>
How do I force my .NET application to run as administrator?
查看>>
应该知道的30个jQuery代码开发技巧
查看>>
PHP与ASP.NET的优劣比较
查看>>
Dapper使用动态参数
查看>>
Vue的安装及使用快速入门
查看>>
Java_包装类
查看>>
ubuntu14.04安装与配置nginx服务器
查看>>
利用/dev/urandom文件创建随机数
查看>>
js遍历获取表格内数据方法
查看>>
DVWA渗透测试环境搭建
查看>>