CF1438B Valerii Against Everyone(考察数学分析问题)

简介: CF1438B Valerii Against Everyone(考察数学分析问题)

time limit per test


1 second


memory limit per test


256 megabytes


input


standard input


output


standard output


You're given an array  b of length  n. Let's define another array a , also of length  n, for which ai=2bi  (1≤i≤n ).


Valerii says that every two non-intersecting subarrays of a have different sums of elements. You want to determine if he is wrong. More formally, you need to determine if there exist four integers l1,r1,l2,r2 that satisfy the following conditions:


  • 1≤l1≤r1<l2≤r2≤n ;
  • al1+al1+1+…+ar1−1+ar1=al2+al2+1+…+ar2−1+ar2


If such four integers exist, you will prove Valerii wrong. Do they exist?


An array  c is a subarray of an array d if cc can be obtained from d  by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.


Input


Each test contains multiple test cases. The first line contains the number of test cases  t (1≤t≤100 ). Description of the test cases follows.


The first line of every test case contains a single integer n  (2≤n≤1000 ).


The second line of every test case contains  n integers b1,b2,…,bn  (0≤bi≤10^9 ).


Output


For every test case, if there exist two non-intersecting subarrays in a that have the same sum, output YES on a separate line. Otherwise, output NO on a separate line.


Also, note that each letter can be in any case.


Example


input


Copy

1. 2
2. 6
3. 4 3 0 1 2 0
4. 2
5. 2 5


output


Copy

1. YES
2. NO


Note


In the first case, a=[16,8,1,2,4,1] . Choosing l1=1 , r1=1 , l2=2  and r2=6  works because 16=(8+1+2+4+1) .


In the second case, you can verify that there is no way to select to such subarrays.


这道题 分两种情况:


  1. bi中有两个数一样
  2. bi中的数两两不同

首先对于第一种情况,不妨设 bj=bk,其中j<k ,则有解为


l1=r1=j,l2=r2=k


输出YES


对于第二种情况,显然此时在二进制下无论选择任何 bi进行和运算,都不会有进位,所以若要满足条件,必定存在 bx=by,与条件矛盾。此时应输出NONO


因此思路是:判断是否有重复元素。具体实现看代码。


#include <iostream>
#include <algorithm>
using namespace std;
int a[20000];
int n,t;
int main()
{
   cin>>t;
   while(t--)
   {
    cin>>n;
    bool flag=0;
    for(int i=1;i<=n;i++)
      cin>>a[i];
    sort(a+1,a+1+n);
    for(int i=2;i<=n;i++) 
    if(a[i]==a[i-1])
    {
      flag=1;
      break;
    } 
     if(!flag) 
     cout<<"NO"<<endl;
     else
      cout<<"YES"<<endl;
   }
   return 0;
}


相关文章
|
7月前
CF一个远古时期的计算几何题(正多边形)
CF一个远古时期的计算几何题(正多边形)
40 0
|
6月前
|
算法 JavaScript 程序员
程序员必知:《程序设计与算法(二)算法基础》《第一周枚举》熄灯问题POJ
程序员必知:《程序设计与算法(二)算法基础》《第一周枚举》熄灯问题POJ
36 0
|
7月前
|
人工智能 算法 Java
第十四届蓝桥杯集训——练习解题阶段(无序阶段)-ALGO-994 最大分解
第十四届蓝桥杯集训——练习解题阶段(无序阶段)-ALGO-994 最大分解
56 1
|
7月前
|
算法 Java C语言
第十四届蓝桥杯集训——练习解题阶段(无序阶段)-ALGO-545 IQ
第十四届蓝桥杯集训——练习解题阶段(无序阶段)-ALGO-545 IQ
56 0
|
机器学习/深度学习 人工智能
CF1451C String Equality(数学细心分析,万物皆有规律)
CF1451C String Equality(数学细心分析,万物皆有规律)
84 0
蓝桥杯2019年第十届JavaB组真题题目+解析+代码+答案:4.数的分解
蓝桥杯2019年第十届JavaB组真题题目+解析+代码+答案:4.数的分解
158 0
蓝桥杯2019年第十届JavaB组真题题目+解析+代码+答案:4.数的分解
CF979B Treasure Hunt(贪心 思维)
CF979B Treasure Hunt(贪心 思维)
98 0
CF979B Treasure Hunt(贪心 思维)
CF1605D. Treelabeling(二分图 博弈)
CF1605D. Treelabeling(二分图 博弈)
93 0
|
C++
CCF小白刷题之路---201912-3 化学方程式(C/C++ 100分)
CCF小白刷题之路---201912-3 化学方程式(C/C++ 100分)
226 0
CCF小白刷题之路---201912-3 化学方程式(C/C++ 100分)
|
算法 Java C++
算法系统学习-水仙fa数是啥花?(蛮力算法补充)
该系列是基于有一定语言基础(C,C++,Java等等)和基本的数据结构基础进行的算法学习专栏,如果觉得有点吃力 😥 ,建议先了解前提知识再学习喔!本个专栏会将用更容易理解的表达去学习算法,如果在一些表述上存在问题还请各位多多指点
154 0