zoukankan      html  css  js  c++  java
  • hdu 1505(最大子矩阵)

    City Game

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 6140    Accepted Submission(s): 2618


    Problem Description
    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 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 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
    题意:求'F'组成的最大子矩阵
    题解:跟hdu1506一样,对每列分别求最大子矩阵。。但是死活WA,不写了。。
    补:预处理有问题。。
    #include<stdio.h>
    #include<iostream>
    #include<string.h>
    #include<math.h>
    #include<algorithm>
    using namespace std;
    const int N = 1005;
    
    int n,m;
    char a[N][N];
    int mp[N][N];
    int L[N],R[N];
    void input()
    {
        int i,j;
        for(i=1; i<=n; i++)
            for(j=1; j<=m; j++)
                cin>>a[i][j];
        for(i=1; i<=m; i++)
            mp[0][i]=0;
        for(i=1; i<=m; i++)
        {
            for(j=1; j<=n; j++)
            {
                if(a[j][i]=='F')
                    mp[j][i]=mp[j-1][i]+1;
                else
                    mp[j][i]=0;
            }
        }
        /*for(int i=1;i<=n;i++){ //test
            for(int j=1;j<=m;j++){
                printf("%d ",mp[i][j]);
            }
            printf(" ");
        }*/
    } /*
    void input(){ memset(mp,0,sizeof(mp)); for(int i=1;i<=n;i++){ gets(a[i]); for(int j=1;j<=m;j++){ if(i==1) { ///预处理mp if(a[i][(j-1)*2]=='R') mp[i][j]=0; if(a[i][(j-1)*2] =='F') mp[i][j]=1; }else{ if(a[i-1][(j-1)*2]=='R') { if(a[i][(j-1)*2] =='R') mp[i][j]=0; if(a[i][(j-1)*2] =='F') mp[i][j]=1; } else { if(a[i][(j-1)*2] =='R') mp[i][j]=0; if(a[i][(j-1)*2] =='F') mp[i][j]+=mp[i-1][j]+1; } } } } /*for(int i=1;i<=n;i++){ //test for(int j=1;j<=m;j++){ printf("%d ",mp[i][j]); } printf(" "); }*/ }*/ int main() { int tcase; scanf("%d",&tcase); while(tcase--){ scanf("%d%d",&n,&m); getchar(); input(); int mx = -1; for(int k=1;k<=n;k++){ L[1]=1; R[m]=m; for(int i=2;i<=m;i++){ ///向右延伸 int t = i; if(t>1&&mp[k][i]<=mp[k][t-1]) t = L[t-1]; L[i] =t; } for(int i=m-1;i>=1;i--){ int t = i; if(t<m&&mp[k][i]<=mp[k][t+1]) t = R[t+1]; R[i] = t; } for(int i=1;i<=m;i++){ if((R[i]-L[i]+1)*mp[k][i]>mx) mx = (R[i]-L[i]+1)*mp[k][i]; } } printf("%d ",mx*3); } }
  • 相关阅读:
    Mix 10 上的asp.net mvc 2的相关Session
    Vista、XP SP2主流支持即将终止
    向Visual Studio 2010迁移的电子书
    ASP.NET MVC 2 转换工具
    Javascript瘦身工具AJAX Minifier
    微软公司的安全开发周期模型
    User Experience Kit
    乐在其中设计模式(C#) 迭代器模式(Iterator Pattern)
    [翻译]使用ASP.NET AJAX让GridView的数据行显示提示框(ToolTip)
    [翻译]使用ASP.NET AJAX实现幻灯片效果
  • 原文地址:https://www.cnblogs.com/liyinggang/p/5384328.html
Copyright © 2011-2022 走看看