cf Educational Codeforces Round 26 C. Two Seals

原题:
C. Two Seals
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
One very important person has a piece of paper in the form of a rectangle a × b.

Also, he has n seals. Each seal leaves an impression on the paper in the form of a rectangle of the size xi × yi. Each impression must be parallel to the sides of the piece of paper (but seal can be rotated by 90 degrees).

A very important person wants to choose two different seals and put them two impressions. Each of the selected seals puts exactly one impression. Impressions should not overlap (but they can touch sides), and the total area occupied by them should be the largest possible. What is the largest area that can be occupied by two seals?

Input
The first line contains three integer numbers n, a and b (1 ≤ n, a, b ≤ 100).

Each of the next n lines contain two numbers xi, yi (1 ≤ xi, yi ≤ 100).

Output
Print the largest total area that can be occupied by two seals. If you can not select two seals, print 0.

Examples
input
2 2 2
1 2
2 1
output
4
input
4 10 9
2 3
1 1
5 10
9 11
output
56
input
3 10 10
6 6
7 7
20 5
output
0
Note
In the first example you can rotate the second seal by 90 degrees. Then put impression of it right under the impression of the first seal. This will occupy all the piece of paper.

In the second example you can’t choose the last seal because it doesn’t fit. By choosing the first and the third seals you occupy the largest area.

In the third example there is no such pair of seals that they both can fit on a piece of paper.

中文:
给你一个长宽为a和b的矩形,然后给你n个矩形印章。在两个印章不相交的情况下,选出两个印章使得能在这个矩形上盖出最大的面积,印章可以旋转。

#include<bits/stdc++.h>
using namespace std;
struct seal
{
    int x,y;
};
int a,b,n;
seal s[101];
bool judge(const seal &s1,const seal &s2)
{
    if(s1.x+s2.x<=a&&max(s1.y,s2.y)<=b)
        return true;
    if(s1.x+s2.x<=b&&max(s1.y,s2.y)<=a)
        return true;
    if(s1.x+s2.y<=a&&max(s1.y,s2.x)<=b)
        return true;
    if(s1.x+s2.y<=b&&max(s1.y,s2.x)<=a)
        return true;
    if(s1.y+s2.x<=a&&max(s1.x,s2.y)<=b)
        return true;
    if(s1.y+s2.x<=b&&max(s1.x,s2.y)<=a)
        return true;
    if(s1.y+s2.y<=a&&max(s1.x,s2.x)<=b)
        return true;
    if(s1.y+s2.y<=b&&max(s1.x,s2.x)<=a)
        return true;
    return false;
}
int main()
{
    ios::sync_with_stdio(false);
    while(cin>>n>>a>>b)
    {
        for(int i=1;i<=n;i++)
            cin>>s[i].x>>s[i].y;
        int ans=0;
        for(int i=1;i<=n;i++)
        {
            for(int j=i+1;j<=n;j++)
            {
                if(judge(s[i],s[j]))
                    ans=max(ans,s[i].x*s[i].y+s[j].y*s[j].x);
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}

思路:
C题居然这么简单!
枚举两个印章,然后判断所有可能的摆放形式。有一种满足就算一下面积,求出最大面积就可以。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值