HRBUST 1786 最大停车场 (01矩阵找最大的矩形)

题目:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1786

代码:

#include
#include
#include

using namespace std;

char maps[1005][1005];
int book[1005][1005];

int solve(int wist[], int n)
{
    //int hist[6]={3,2,2,0,0};
    int* arr = new int[n];// 申请一个额外的数组
    arr[0] = hist[0];
    int max = hist[0]; // 最大面积

    for(int i=1; i=0; j--)
        {
            if(arr[j]>arr[i])
            {
                if(arr[j]*(i-j)>max)
                {
                    max = arr[j]*(i-j);
                }
                arr[j] = arr[i];
            }
            else break;
            //数组arr里的元素,保持非递减的顺序。
            printf("%d ",arr[j]);
        }
    }

    /*for(int i=0;imax)
        {
            max = arr[i]*(n-i);
        }
    }
    //printf("%d \n",max);
    return max;
}

int main()
{
    //freopen("B.in.txt","r",stdin);
    //freopen("B.out.txt","w",stdout);
    int t;
    scanf("%d",&t);

    while(t--)
    {
        memset(book,0,sizeof(book));
        int n,m;
        scanf("%d%d",&n,&m);
        for(int i=0; i

当个模板题吧。

你可能感兴趣的:(HRBUST)