CF1598C.Delete Two Elements
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp has got an array a consisting of n integers. Let's denote k as the mathematic mean of these elements (note that it's possible that k is not an integer).
The mathematic mean of an array of n elements is the sum of elements divided by the number of these elements (i. e. sum divided by n ).
Monocarp wants to delete exactly two elements from a so that the mathematic mean of the remaining (n−2) elements is still equal to k .
Your task is to calculate the number of pairs of positions [i,j] ( i<j ) such that if the elements on these positions are deleted, the mathematic mean of (n−2) remaining elements is equal to k (that is, it is equal to the mathematic mean of n elements of the original array a ).
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of testcases.
The first line of each testcase contains one integer n ( 3≤n≤2⋅105 ) — the number of elements in the array.
The second line contains a sequence of integers a1,a2,…,an ( 0≤ai≤109 ), where ai is the i -th element of the array.
The sum of n over all testcases doesn't exceed 2⋅105 .
输出格式
Print one integer — the number of pairs of positions [i,j] ( i<j ) such that if the elements on these positions are deleted, the mathematic mean of (n−2) remaining elements is equal to k (that is, it is equal to the mathematic mean of n elements of the original array a ).
输入输出样例
输入#1
4 4 8 8 8 8 3 50 20 10 5 1 4 7 3 5 7 1 2 3 4 5 6 7
输出#1
6 0 2 3
说明/提示
In the first example, any pair of elements can be removed since all of them are equal.
In the second example, there is no way to delete two elements so the mathematic mean doesn't change.
In the third example, it is possible to delete the elements on positions 1 and 3 , or the elements on positions 4 and 5 .