CF1771A.Hossam and Combinatorics
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Hossam woke up bored, so he decided to create an interesting array with his friend Hazem.
Now, they have an array a of n positive integers, Hossam will choose a number ai and Hazem will choose a number aj .
Count the number of interesting pairs (ai,aj) that meet all the following conditions:
- 1≤i,j≤n ;
- i=j ;
- The absolute difference ∣ai−aj∣ must be equal to the maximum absolute difference over all the pairs in the array. More formally, ∣ai−aj∣=max1≤p,q≤n∣ap−aq∣ .
输入格式
The input consists of multiple test cases. The first line contains a single integer t ( 1≤t≤100 ), which denotes the number of test cases. Description of the test cases follows.
The first line of each test case contains an integer n ( 2≤n≤105 ).
The second line of each test case contains n integers a1,a2,…,an ( 1≤ai≤105 ).
It is guaranteed that the sum of n over all test cases does not exceed 105 .
输出格式
For each test case print an integer — the number of interesting pairs (ai,aj) .
输入输出样例
输入#1
2 5 6 2 3 8 1 6 7 2 8 3 2 10
输出#1
2 4
说明/提示
In the first example, the two ways are:
- Hossam chooses the fourth number 8 and Hazem chooses the fifth number 1 .
- Hossam chooses the fifth number 1 and Hazem chooses the fourth number 8 .
In the second example, the four ways are:
- Hossam chooses the second number 2 and Hazem chooses the sixth number 10 .
- Hossam chooses the sixth number 10 and Hazem chooses the second number 2 .
- Hossam chooses the fifth number 2 and Hazem chooses the sixth number 10 .
- Hossam chooses the sixth number 10 and Hazem chooses the fifth number 2 .