zoukankan      html  css  js  c++  java
  • LA3029 City Game

    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 <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cstdlib>
     5 #include <algorithm>
     6 #include <queue>
     7 #include <vector>
     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和left
    41             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                 else
    46                 {
    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
    ", ans * 3);
    60     }
    61     return 0;
    62 } 
    LA3029
  • 相关阅读:
    pandas 数据类型研究(三)数据类型object与category
    kaggle比赛实践M5-baseline研读
    pd.melt详解--列转行
    kaggle比赛实践M5-数据集介绍
    kaggle比赛实践M5-比赛介绍
    txNLP 335-374
    信息,熵,联合熵,条件熵,互信息(信息增益),交叉熵,相对熵(KL散度)
    框架SpringMVC笔记系列 二 传值
    项目总结笔记系列 Social Hub KT Session1
    读书笔记系列之java性能优化权威指南 一 第一章
  • 原文地址:https://www.cnblogs.com/huibixiaoxing/p/8288692.html
Copyright © 2011-2022 走看看