zoukankan      html  css  js  c++  java
  • Designing Efficient Algorithms [Examples]~F

    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

    解题思路:这是一个最大子矩阵问题。题目意思:给定一个m*n的矩阵,其中一些格子是空地(F),其他是障碍(R)。找出一个全部由F组成的面积最大的子矩阵,输出其面积乘以3后的结果。

    程序代码:

    #include"stdio.h"
    #include"algorithm"
    using namespace std;
    
    const int maxn=1010;
    int mat[maxn][maxn],up[maxn][maxn],left[maxn][maxn],right[maxn][maxn];
    
    int main()
    {
        int T,i,j,k;
        scanf("%d",&T);
        while(T--)
        {
            int m,n;//读入数据
            scanf("%d%d",&m,&n);
            for(i=0;i<m;i++)
                for(j=0;j<n;j++)
                {
                    int ch=getchar();
                    while(ch!='F'&&ch!='R')ch=getchar();
                    mat[i][j]=ch=='F'?0:1;
                }
                int ans=0;
                for(i=0;i<m;i++)//从上到下逐行处理
                {
                    int lo=-1,ro=n;
                    for(j=0;j<n;j++)//从左到右扫描,维护up和left
                    if(mat[i][j]==1){up[i][j]=left[i][j]=0;lo=j;}
                    else
                    {
                        up[i][j]=i==0?1:up[i-1][j]+1;
                        left[i][j]=i==0?lo+1:max(left[i-1][j],lo+1);
                    }
                    for(k=n-1;k>=0;k--)//从右到左扫描,维护right并更新答案
                        if(mat[i][k]==1){right[i][k]=n;ro=k;}
                        else
                        {
                            right[i][k]=i==0?ro-1:min(right[i-1][k],ro-1);
                            ans=max(ans,up[i][k]*(right[i][k]-left[i][k]+1));
                        }
                }
                printf("%d
    ",ans*3);
        }
        return 0;
    }
    

     

  • 相关阅读:
    php---观察者模式
    elasticsearch常用查询和注意点
    linux镜像iso格式
    Mysql查询今天、昨天、7天、近30天、本月、上一月数据
    php常用算法
    算法之斐波纳契数列递归和迭代实现
    带你了解session和cookie作用原理区别和用法
    mysql大数据量的分页优化
    常用链接
    自然语言处理
  • 原文地址:https://www.cnblogs.com/chenchunhui/p/4925039.html
Copyright © 2011-2022 走看看