【Codeforces】C. Minimum Value Rectangle
3488 단어 Codeforces
제목 링크
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You have nn 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 SS be the area of the rectangle and PP be the perimeter of the rectangle.
The chosen rectangle should have the value P2SP2S 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 TT (T≥1T≥1) — the number of lists of sticks in the testcase.
Then 2T2T lines follow — lines (2i−1)(2i−1) and 2i2i of them describe the ii-th list. The first line of the pair contains a single integer nn (4≤n≤1064≤n≤106) — the number of sticks in the ii-th list. The second line of the pair contains nn integers a1,a2,…,ana1,a2,…,an (1≤aj≤1041≤aj≤104) — lengths of the sticks in the ii-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 TT lists doesn't exceed 106106 in each testcase.
Output
Print TT lines. The ii-th line should contain the answer to the ii-th list of the input. That is the lengths of the four sticks you choose from the ii-th list, so that they form a rectangle and the value P2SP2S 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
input
Copy
3
4
7 2 2 7
8
2 8 1 4 8 2 1 5
5
5 5 5 5 5
output
Copy
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 22 and 77, its area is 2⋅7=142⋅7=14, perimeter is 2(2+7)=182(2+7)=18. 18214≈23.14318214≈23.143.
The second list contains subsets of four sticks that can form rectangles with sides (1,2)(1,2), (2,8)(2,8) and (1,8)(1,8). Their values are 622=18622=18, 20216=2520216=25 and 1828=40.51828=40.5, respectively. The minimal one of them is the rectangle (1,2)(1,2).
You can choose any four of the 55 given sticks from the third list, they will form a square with side 55, which is still a rectangle with sides (5,5)(5,5).
제목: 네 개의 작은 막대기를 직사각형으로 맞추어 (둘레의 제곱)/(면적)의 최소를 요구한다.
분류: 수론.
문제풀이: 부등식에 따라 a=b일 때 최소값을 얻을 수 있음을 유도할 수 있기 때문에 우리는 a와 b가 가장 가까운 두 개수만 요구하면 된다.전환을 거치면 a/b=1로 변할 수 있다.a/b의 최대치만 구하면 됩니다.
코드:
#include
#include
using namespace std;
int a[1000005];
int b[1000005];
int main()
{
// ya
int t;
scanf("%d",&t);
for (int ti = 0; ti < t; ti++)
{
int n;
scanf("%d",&n);
for(int i=0;iMin)
{
Min=(double)((double)b[i-1]/b[i]);
x=b[i];
y=b[i-1];
}
}
printf("%d %d %d %d
",x,x,y,y);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces 1287C Garland제목 링크:Codeforces 1287C Garland 사고방식: 우리기dp[i][j][0]와 dp[i][j][1]는 각각 i개가 홀수/짝수이고 앞의 i개 안에 j개의 짝수가 있는 상황에서 i개의 최소 복잡도.첫 번...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.