B. Equal Rectangles

传送门

B. Equal Rectangles

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given 4n sticks, the length of the i-th stick is ai.You have to create n rectangles, each rectangle will consist of exactly 4 sticks from the given set. The rectangle consists of four sides, opposite sides should have equal length and all angles in it should be right. Note that each stick can be used in only one rectangle. Each stick should be used as a side, you cannot break the stick or use it not to the full length.You want to all rectangles to have equal area. The area of the rectangle with sides a and b is a⋅b Your task is to say if it is possible to create exactly n rectangles of equal area or not.You have to answer q independent queries.

Input
The first line of the input contains one integer q
(1≤q≤500) — the number of queries. Then q queries follow.
The first line of the query contains one integer n(1≤n≤100) — the number of rectangles.The second line of the query contains 4n integers a1,a2,…,a4n (1≤ai≤104), where ai is the length of the i-th stick.

Output
For each query print the answer to it. If it is impossible to create exactly n
rectangles of equal area using given sticks, print “NO”. Otherwise print
“YES”.

Example
Input
5
1
1 1 10 10
2
10 5 2 10 1 1 2 5
2
10 5 1 10 5 1 1 1
2
1 1 1 1 1 1 1 1
1
10000 10000 10000 10000
Output
YES
YES
NO
YES
YES

题意:给你4n木棒,判断是否可以摆放成n个面积相等的矩形。

思路:只有最大的边与最短的边组合才能满足条件,排序后处理即可。

AC代码

#include<bits/stdc++.h>
using namespace std;
int main()
{
	int t;
	cin>>t;
	while(t--)
	{
		int n;
		cin>>n;
		int a[4*n];
		for(int i=0;i<4*n;i++)
		cin>>a[i];
		sort(a,a+4*n);
		int m=0,i=0,j=4*n-1;
		int s=a[0]*a[4*n-1];
		while(i<j)
		{
			if(a[i]==a[i+1]&&a[j]==a[j-1])
		{
		if(a[i]*a[j]==s)
			m++;}
			i=i+2;
			j=j-2;
		}
		if(m==n)
		cout<<"YES\n";
		else
		cout<<"NO\n";}
	return 0;
	}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

稚皓君

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值