C. Minimum Value Rectangle -codeforces1027 -csdn博客

You have n sticks of the given lengths.

Your task is to choose exactly four of them in such a way that they can form a rectangle. No sticks can be cut to pieces, each side of the rectangle must be formed by a single stick. No stick can be chosen multiple times. It is guaranteed that it is always possible to choose such sticks.

Let S be the area of the rectangle and P be the perimeter of the rectangle.

The chosen rectangle should have the value P^2/S minimal possible. The value is taken without any rounding.

If there are multiple answers, print any of them.

Each testcase contains several lists of sticks, for each of them you are required to solve the problem separately.

Input
The first line contains a single integer T (T≥1) — the number of lists of sticks in the testcase.

Then 2T lines follow — lines (2i−1) and 2i of them describe the i-th list. The first line of the pair contains a single integer n (4≤n≤106) — the number of sticks in the i-th list. The second line of the pair contains n integers a1,a2,…,an (1≤aj≤104) — lengths of the sticks in the i-th list.

It is guaranteed that for each list there exists a way to choose four sticks so that they form a rectangle.

The total number of sticks in all T lists doesn’t exceed 106 in each testcase.

Output
Print T lines. The i-th line should contain the answer to the i-th list of the input. That is the lengths of the four sticks you choose from the i-th list, so that they form a rectangle and the value
P^2/S of this rectangle is minimal possible. You can print these four lengths in arbitrary order.

If there are multiple answers, print any of them.

Example
inputCopy
3
4
7 2 2 7
8
2 8 1 4 8 2 1 5
5
5 5 5 5 5
outputCopy
2 7 7 2
2 2 1 1
5 5 5 5
Note
There is only one way to choose four sticks in the first list, they form a rectangle with sides 2 and 7, its area is 2⋅7=14, perimeter is
2(2+7)=18. 18214≈23.143.

The second list contains subsets of four sticks that can form rectangles with sides (1,2), (2,8) and (1,8). Their values are 622=18, 20216=25 and 1828=40.5, respectively. The minimal one of them is the rectangle (1,2).

You can choose any four of the 5 given sticks from the third list, they will form a square with side 5, which is still a rectangle with sides (5,5).

  • 题意:给你n个木棒,从这木棒选4个组成一个矩形,是这个矩形周长平方除以面积最小的木棒组合,如果多组答案,输出任意一组,输出顺序随意。

  • 题解:我们假设边长分别为a,b那么表达式便为((a+b)2)^2/ab,化简后为4(a/b+b/a+2),根据完全平方公式,当a==b时答案最小。因此我们可以对所有木棒排序,然后相邻的相邻的找对比,如此遍历一遍即可.代码如下

#include<bits/stdc++.h>
#define endl '\n'
#define pb push_back
#define mp make_pair
#define _ ios::sync_with_stdio(false)
bool SUBMIT = 1;
typedef long long ll;
using namespace std;
const double PI = acos(-1);
const int inf = 1e6+100;
int sn[inf],n;
int main()
{
    if(!SUBMIT)freopen("i.txt","r",stdin);else _;
    int t;cin>>t;
    while(t--)
    {
        cin>>n;
        for(int i=0;i<n;i++)cin>>sn[i];
        sort(sn,sn+n);
        int a,b,c,d;
        bool f=false,k=false;
        for(int i=0;i<n-1;i++)
        {
            if(sn[i]==sn[i+1]){
                i++;
                if(!f)a=sn[i],f=true;
                else{
                 b=sn[i];
                 if(!k){
                    c=a,d=b,a=b,k=true;continue;
                 }
                 if(pow(((double)a+b)*2,2)/(a*b)<pow(((double)c+d)*2,2)/(c*d))
                    c=a,d=b;
                 a=b;
                }
            }
        }
        cout<<c<<" "<<c<<" "<<d<<" "<<d<<endl;
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_38701476/article/details/81837605