Codeforces Round #716 (Div. 2) A. Perfectly Imperfect Array

举报
小哈里 发表于 2022/05/10 23:39:30 2022/05/10
【摘要】 problem A. Perfectly Imperfect Array time limit per test1 second memory limit per test256 megabytes i...

problem

A. Perfectly Imperfect Array
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Given an array a of length n, tell us whether it has a non-empty subsequence such that the product of its elements is not a perfect square.

A sequence b is a subsequence of an array a if b can be obtained from a by deleting some (possibly zero) elements.

Input
The first line contains an integer t (1≤t≤100) — the number of test cases. The description of the test cases follows.

The first line of each test case contains an integer n (1≤n≤100) — the length of the array a.

The second line of each test case contains n integers a1, a2, …, an (1≤ai≤104) — the elements of the array a.

Output
If there’s a subsequence of a whose product isn’t a perfect square, print “YES”. Otherwise, print “NO”.

Example
inputCopy
2
3
1 5 4
2
100 10000
outputCopy
YES
NO
Note
In the first example, the product of the whole array (20) isn’t a perfect square.

In the second example, all subsequences have a perfect square product.

A.完美不完美的数组
每次测试的时限1秒
每个测试的内存限制256 MB
输入标准输入
输出标准输出
给定长度为n的数组a,请告诉我们它是否具有非空子序列,以使其元素的乘积不是理想的平方。

如果可以通过删除一些(可能为零)元素从a获得b,则序列b是数组a的子序列。

输入
第一行包含一个整数t(1≤t≤100)-测试用例的数量。测试用例的描述如下。

每个测试用例的第一行包含一个整数n(1≤n≤100)-数组a的长度。

每个测试用例的第二行包含n个整数a1,a2,…,an(1≤ai≤104)—数组a的元素。

输出
如果存在其产品不是理想正方形的子序列,请打印“是”。否则,打印“否”。

例子
inputCopy
2
3
1 5 4
2
100 10000
outputCopy
是的

笔记
在第一个示例中,整个数组(20)的乘积不是一个完美的正方形。

在第二个示例中,所有子序列都有一个完美的平方积。

solution

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
	ios::sync_with_stdio(false);
	int T;  cin>>T;
	while(T--){
		int n;   cin>>n;
		//LL ans=1;
		int ok = 1;
		for(int i = 1; i <= n; i++){
			LL x;  cin>>x;
			LL xx = sqrt(x);
			if(xx*xx!=x){
				ok = 0;
			}
		}
		//LL t = sqrt(ans);
		if(ok==1){
			cout<<"No\n";
		}else{
			cout<<"Yes\n";
		}
	}
	return 0;
}



  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。

原文链接:gwj1314.blog.csdn.net/article/details/117389515

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。