307922: CF1436A. Reorder
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Reorder
题意翻译
就是给你一个长度为 $n$ 的数组 $a$,把这个重新排序后, 使得 $\sum^{n}_{i=1}\sum^{n}_{j=i}\dfrac{a_j}{j}=m$。题目描述
For a given array $ a $ consisting of $ n $ integers and a given integer $ m $ find if it is possible to reorder elements of the array $ a $ in such a way that $ \sum_{i=1}^{n}{\sum_{j=i}^{n}{\frac{a_j}{j}}} $ equals $ m $ ? It is forbidden to delete elements as well as insert new elements. Please note that no rounding occurs during division, for example, $ \frac{5}{2}=2.5 $ .输入输出格式
输入格式
The first line contains a single integer $ t $ — the number of test cases ( $ 1 \le t \le 100 $ ). The test cases follow, each in two lines. The first line of a test case contains two integers $ n $ and $ m $ ( $ 1 \le n \le 100 $ , $ 0 \le m \le 10^6 $ ). The second line contains integers $ a_1, a_2, \ldots, a_n $ ( $ 0 \le a_i \le 10^6 $ ) — the elements of the array.
输出格式
For each test case print "YES", if it is possible to reorder the elements of the array in such a way that the given formula gives the given value, and "NO" otherwise.
输入输出样例
输入样例 #1
2
3 8
2 5 1
4 4
0 1 2 3
输出样例 #1
YES
NO