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 �C 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.

InputThe first line of the input contains an integer K �C 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 �C reserved unit

F �C free unit

In the end of each area description there is a separating line. 
OutputFor each data set in the input 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

  1. 2
  2. 5 6
  3. R F F F F F
  4. F F F F F F
  5. R R R F F F
  6. F F F F F F
  7. F F F F F F
  8.  
  9. 5 5
  10. R R R R R
  11. R R R R R
  12. R R R R R
  13. R R R R R
  14. R R R R R

Sample Output

  1. 45
  2. 0
  3.  
  4. // 题意:第一行测试组数T,然后 n ,m 代表矩阵大小 n行m列 ,只有 F 才能建,求最大子矩阵
    有点复杂,但是,如果你做过 hdu1506 ,这题一下就想到了。
    对于每行都建个 L[] , R[] 数组,
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <string.h>
  4. using namespace std;
  5. #define MX 1005
  6. int n,m;
  7. int h[MX][MX];
  8. int L[MX][MX];
  9. int R[MX][MX];
  10. char mp[MX][MX];
  11.  
  12. void set_h()
  13. {
  14. memset(h,,sizeof(h));
  15. for (int i=;i<=m;i++)
  16. if (mp[][i]=='F')
  17. h[][i]=;
  18. for (int i=;i<=n;i++)
  19. for (int j=;j<=m;j++)
  20. if (mp[i][j]=='F')
  21. h[i][j]=h[i-][j]+;
  22. }
  23.  
  24. void set_LR()
  25. {
  26. for (int i=;i<=n;i++)
  27. {
  28. for (int j=;j<=m;j++)
  29. {
  30. L[i][j]=j;
  31. if (h[i][j]==) continue;
  32. while (h[i][L[i][j]-]>=h[i][j])
  33. L[i][j]=L[i][L[i][j]-];
  34. }
  35. }
  36. for (int i=;i<=n;i++)
  37. {
  38. for (int j=m;j>=;j--)
  39. {
  40. R[i][j]=j;
  41. if (h[i][j]==) continue;
  42. while (h[i][R[i][j]+]>=h[i][j])
  43. R[i][j]=R[i][R[i][j]+];
  44. }
  45. }
  46. }
  47.  
  48. int main()
  49. {
  50. int t;
  51. cin>>t;
  52. while (t--)
  53. {
  54. scanf("%d%d",&n,&m);
  55. for (int i=;i<=n;i++)
  56. {
  57. for (int j=;j<=m;j++)
  58. {
  59. char sss[];
  60. scanf("%s",sss);
  61. mp[i][j]=sss[];
  62. }
  63. }
  64. set_h();
  65. set_LR();
  66. int ans = ;
  67. for (int i=;i<=n;i++)
  68. {
  69. for (int j=;j<=m;j++)
  70. {
  71. int area = (R[i][j]-L[i][j]+)*h[i][j];
  72. if (area>ans) ans = area;
  73. }
  74. }
  75. printf("%d\n",ans*);
  76. }
  77. return ;
  78. }
  1.  

City Game(最大子矩阵)的更多相关文章

  1. la----3695 City Game(最大子矩阵)

    Bob is a strategy game programming specialist. In his new city building game the gaming environment ...

  2. DP:0

    小故事: A * "1+1+1+1+1+1+1+1 =?" * A : "上面等式的值是多少" B : *计算* "8!" A *在上面等式 ...

  3. UVa LA 3029 City Game 状态拆分,最大子矩阵O(n2) 难度:2

    题目 https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_pr ...

  4. POJ 1964&HDU 1505&HOJ 1644 City Game(最大0,1子矩阵和总结)

    最大01子矩阵和,就是一个矩阵的元素不是0就是1,然后求最大的子矩阵,子矩阵里的元素都是相同的. 这个题目,三个oj有不同的要求,hoj的要求是5s,poj是3秒,hdu是1秒.不同的要求就对应不同的 ...

  5. City Game UVALive - 3029(悬线法求最大子矩阵)

    题意:多组数据(国外题好像都这样),每次n*m矩形,F表示空地,R表示障碍 求最大子矩阵(悬线法模板) 把每个格子向上延伸的空格看做一条悬线 以le[i][j],re[i][j],up[i][j]分别 ...

  6. 十月例题F题 - City Game

    F - City Game Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Bob is a st ...

  7. 【巧妙预处理系列】【UVA1330】City game

    最大子矩阵(City Game, SEERC 2004, LA 3029) 给定一个m×n的矩阵,其中一些格子是空地(F),其他是障碍(R).找出一个全部由F组成的面积最大的子矩阵,输出其面积乘以3后 ...

  8. hdu 1505(最大子矩阵)

    City Game Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total S ...

  9. ACM 中 矩阵数据的预处理 && 求子矩阵元素和问题

            我们考虑一个$N\times M$的矩阵数据,若要对矩阵中的部分数据进行读取,比如求某个$a\times b$的子矩阵的元素和,通常我们可以想到$O(ab)$的遍历那个子矩阵,对它的各 ...

随机推荐

  1. SuperMap iClient如何使用WMTS地图服务(转)

    http://blog.sina.com.cn/s/blog_6259ebd50102v221.html 什么是WMTS服务 WMTS,切片地图Web服务(Web Map Tile Service)当 ...

  2. ES6里关于类的拓展(二):继承与派生类

    继承与派生类 在ES6之前,实现继承与自定义类型是一个不小的工作.严格意义上的继承需要多个步骤实现 function Rectangle(length, width) { this.length = ...

  3. http://www.cnblogs.com/hoojo/archive/2011/06/08/2075201.html

    http://www.cnblogs.com/hoojo/archive/2011/06/08/2075201.html

  4. 转:Hash, MAC,HMAC说明

    from: http://www.cnblogs.com/songhan/archive/2012/07/29/2613898.html Hash, MAC,HMAC Hash-MD5, SHA-1, ...

  5. oracle 12C SYS,SYSTEM用户的密码都忘记或是丢失

    密码 conn / as sysdba alter user system identified by Abcd1234; manual script first -->manual_scrip ...

  6. Android Studio加入插件(Genymotion)

    官方模拟器的龟速已让我们无力吐槽.幸好有genymotion这款逆天的Android虚拟机,它有着高速的开启速度,良好的交互界面. 是Android开发必备的良品.甚至有些玩家已经用genymotio ...

  7. CentOS6.8 搭建SVN并用钩子自动实现同步到web目录

    一 安装 yum install subversion 二 检查是否安装成功 svn --version 三 创建仓库目录 mkdir –p /home/svnroot/test 四 创建项目 svn ...

  8. SQL中拆分字符串substr及统计字符出现频数replace用法实例讲解

    一.拆分字符串为若干行 例一:要求将表emp中的'king'按照每行一个单词拆成四行 注意:substr(str,pos):截取pos位置开始的字符: substr(str,pos,len):从pos ...

  9. PJSIP dialog inv销毁

    PJSIP的Diaglog(类型为pjsip_dialog) 可以被外部调用,同时PJSIP有自己的机制销毁用户创建的 Dialog,如PJSIP内部销毁了某个Diaglog,用户在不知情的情况下继续 ...

  10. 【LeetCode-面试算法经典-Java实现】【114-Flatten Binary Tree to Linked List(二叉树转单链表)】

    [114-Flatten Binary Tree to Linked List(二叉树转单链表)] [LeetCode-面试算法经典-Java实现][全部题目文件夹索引] 原题 Given a bin ...