CodeForces 589B Layer Cake(枚举)

B. Layer Cake
time limit per test
6 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Dasha decided to bake a big and tasty layer cake. In order to do that she went shopping and bought n rectangular cake layers. The length and the width of the i-th cake layer were ai and bi respectively, while the height of each cake layer was equal to one.

From a cooking book Dasha learned that a cake must have a form of a rectangular parallelepiped constructed from cake layers of the same sizes.

Dasha decided to bake the biggest possible cake from the bought cake layers (possibly, using only some of them). It means that she wants the volume of the cake to be as big as possible. To reach this goal, Dasha can cut rectangular pieces out of the bought cake layers. She always cuts cake layers in such a way that cutting lines are parallel to the edges of that cake layer. Dasha isn't very good at geometry, so after cutting out a piece from the original cake layer, she throws away the remaining part of it. Also she can rotate a cake layer in the horizontal plane (swap its width and length).

Dasha wants her cake to be constructed as a stack of cake layers of the same sizes. Each layer of the resulting cake should be made out of only one cake layer (the original one or cut out from the original cake layer).

Help Dasha to calculate the maximum possible volume of the cake she can bake using given cake layers.

Input

The first line contains an integer n (1 ≤ n ≤ 4000) — the number of cake layers that Dasha can use.

Each of the following n lines contains two integer numbers ai and bi (1 ≤ ai, bi ≤ 106) — the length and the width of i-th cake layer respectively.

Output

The first line of the output should contain the maximum volume of cake that can be baked using given layers.

The second line of the output should contain the length and the width of the resulting cake. If there are many solutions with maximum possible volume, print any of them.

Examples
input
5
5 12
1 1
4 6
6 4
4 6
output
96
6 4
input
2
100001 900000
900001 100000
output
180000000000
900000 100000
Note

In the first example Dasha doesn't use the second cake layer. She cuts 4 × 6 rectangle from the first cake layer and she uses other cake layers as is.

In the second example Dasha cuts off slightly from the both cake layers.

题目大意:给出n个矩形的长和宽,每个矩形可以任意切割,切割后的部分要扔掉,选择一些矩形组成一个大的矩形,要求每个矩形的长和宽相等,求大矩形面积的最大值。

思路:枚举即可。假设矩形长大于等于宽,即枚举每个可能的长和宽。容易看出,切割后的矩形的长一定是n个矩形长中的一个,宽也是n个矩形宽中的某一个。先对n个矩形按照长从大到小,宽从小到大排序。对于每个可能的长和宽,枚举满足长和宽都大于当前长和宽的矩形的个数,乘以当前的面积取最大值即可。在下面的代码中,集合中插入的是每个矩形的宽,每次选择一个长L,然后扫描当前集合中所有的宽W,对每一条宽W,算出满足宽大于等于it的矩形的个数NUM(因为集合中的元素是有序排列的,这个数目可以直接算出。因为L是逆序排序的,所以集合中的W所对应的L肯定大于当前选择的L)。答案就是当前L*W*NUM的最大值。

#include<cstdio>
#include<cstring>
#include<vector>
#include<cmath>
#include<iostream>
#include<algorithm>
#include<queue>
#include<set>
#include<map>
#include<cctype>
using namespace std;
typedef long long ll;
const int maxn = 4000 + 10;
const int INF = 1e9+10;

struct node
{
    ll a,b;
    bool operator < (const node& rhs) const
    {
        return a > rhs.a || a == rhs.a && b < rhs.b;
    }

}rec[maxn];

multiset<int> s;
multiset<int>::iterator it;

int main()
{
    int n;
    scanf("%d",&n);
    for (int i = 0; i < n; i++) {
        scanf("%I64d%I64d",&rec[i].a, &rec[i].b);
        if (rec[i].a < rec[i].b) swap(rec[i].a, rec[i].b);
    }
    sort(rec,rec+n);
    ll ans_a(0),ans_b(0),ans(0);
    for (int i = 0; i < n; i++) {
        s.insert(rec[i].b);
        int cur = 0;
        for (it = s.begin(); it != s.end(); ++it) {
            ll sum = rec[i].a * (*it) * (i+1-cur);
            if (sum > ans) {
                ans = sum;
                ans_a = *it;
                ans_b = rec[i].a;
            }
            cur++;
        }
    }
    printf("%I64d\n%I64d %I64d\n",ans,ans_b,ans_a);
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值