码迷,mamicode.com
首页 > 其他好文 > 详细

Rectangle

时间:2019-09-26 21:27:12      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:表示   rectangle   输入   clu   htm   inf   temp   strong   tle   

题目描述

在 x 轴上有相互挨着的矩形, 这些矩形有一个边紧贴着 x 轴,现在给出每个矩形的长宽, 所有的矩形看作整体当作一个画布, 则可以在这个画布上画出的最大的矩形的面积是多少。(画出的矩形长和高平行于X,Y轴)

解答要求时间限制:3000ms, 内存限制:64MB
输入

每组第一个数N(0<=N<=20000)表示N个矩形。下面N行有两个数a(1 <= a <=1000),b(1 <= b<=1000)分别表示每个矩形的x轴长度和y轴长度。

输出

输出最大的面积。

技术图片

 

 

#include <stdio.h>

long dynamicCaculate(int size);

long x_and_y[20000][2] = {0};

int main() {
    int n;
    scanf("%d", &n);
    long i = 0;
    while (i < n) {
        scanf("%d %d", &x_and_y[i][0], &x_and_y[i][1]);
        i++;
    }
    long res = dynamicCaculate(n);
    printf("%ld", res);
    return 0;
}

//分包不包括下一个输入的矩形
long dynamicCaculate(int size) {
    if (size == 0) {
        return 0;
    }
    long res_1 = 0;
    for (int i = 0; i < size; ++i) {
        long tempArea = 0;
        int totalWidth = x_and_y[i][0];
        for (int j = i - 1; j >= 0; --j) {
            if (x_and_y[j][1] >= x_and_y[i][1]) {
                totalWidth += x_and_y[j][0];
            } else {
                break;
            }
        }
        for (int j = i + 1; j < size; ++j) {
            if (x_and_y[j][1] >= x_and_y[i][1]) {
                totalWidth += x_and_y[j][0];
            } else {
                break;
            }
        }
        tempArea = totalWidth * x_and_y[i][1];
        res_1 = res_1 > tempArea ? res_1 : tempArea;
    }
    return res_1;
}

 

Rectangle

标签:表示   rectangle   输入   clu   htm   inf   temp   strong   tle   

原文地址:https://www.cnblogs.com/ustc-anmin/p/11594208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!