CF1527C.Sequence Pair Weight

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The weight of a sequence is defined as the number of unordered pairs of indexes (i,j)(i,j) (here i<ji \lt j ) with same value ( ai=aja_{i} = a_{j} ). For example, the weight of sequence a=[1,1,2,2,1]a = [1, 1, 2, 2, 1] is 44 . The set of unordered pairs of indexes with same value are (1,2)(1, 2) , (1,5)(1, 5) , (2,5)(2, 5) , and (3,4)(3, 4) .

You are given a sequence aa of nn integers. Print the sum of the weight of all subsegments of aa .

A sequence bb is a subsegment of a sequence aa if bb can be obtained from aa by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t1051 \le t \le 10^5 ). Description of the test cases follows.

The first line of each test case contains a single integer nn ( 1n1051 \le n \le 10^5 ).

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai1091 \le a_i \le 10^9 ).

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 .

输出格式

For each test case, print a single integer — the sum of the weight of all subsegments of aa .

输入输出样例

  • 输入#1

    2
    4
    1 2 1 1
    4
    1 2 3 4

    输出#1

    6
    0

说明/提示

  • In test case 11 , all possible subsegments of sequence [1,2,1,1][1, 2, 1, 1] having size more than 11 are:

    1. [1,2][1, 2] having 00 valid unordered pairs;
    2. [2,1][2, 1] having 00 valid unordered pairs;
    3. [1,1][1, 1] having 11 valid unordered pair;
    4. [1,2,1][1, 2, 1] having 11 valid unordered pairs;
    5. [2,1,1][2, 1, 1] having 11 valid unordered pair;
    6. [1,2,1,1][1, 2, 1, 1] having 33 valid unordered pairs.

    Answer is 66 .

  • In test case 22 , all elements of the sequence are distinct. So, there is no valid unordered pair with the same value for any subarray. Answer is 00 .

首页