zoj3872Beauty of Array

来源:互联网 发布:最贵域名排行 编辑:程序博客网 时间:2024/06/04 01:33

Beauty of Array

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Edward has an array A with N integers. He defines the beauty of an array as the summation of all distinct integers in the array. Now Edward wants to know the summation of the beauty of all contiguous subarray of the array A.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

The first line contains an integer N (1 <= N <= 100000), which indicates the size of the array. The next line contains N positive integers separated by spaces. Every integer is no larger than 1000000.

Output

For each case, print the answer in one line.

Sample Input

351 2 3 4 532 3 342 3 3 2

Sample Output

1052138
#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<algorithm>#include<cmath>#include<list>#include<queue>#include<vector>using namespace std;const int maxn=1000010;long long pos[maxn];int main(){long long t,n,i,j,k,ans;scanf("%lld",&t);while(t--){scanf("%lld",&n);ans=0;memset(pos,0,sizeof(pos));for(i=1;i<=n;++i){scanf("%lld",&k);ans=ans+k*(n-i+1)*(i-pos[k]);pos[k]=i;        }printf("%lld\n",ans);}return 0;}



0 0
原创粉丝点击